-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
23 lines (13 loc) · 783 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Matan Gazit
Project 0
CS4280
Due: 02/08/2021
MAKE:
To make this project, use command 'make' in the command line when in the project directory
Use 'make clean' and cleanup directory following compilation
RUN:
To run this project, use command './P0 [OPTIONAL_FILE]' in the command line when in the project directory
If no [OPTIONAL_FILE] is entered as an argument, the user will be tasked with entering 10 words into a character array
If an [OPTIONAL_FILE] is used, the program will use text from inside the file to construct a tree of up to size 100
Array will be used to construct a tree, and then print its traversals into 3 seperate files: output.inorder,
output.preorder, output.postorder. Look for these files in the directory following succesfull execution