create a project with three data structures
(queue, stack, binary tree) defined. The project should be able to read the names on the TEXT file in and
store them in each data structure. From each data structure, it should have the following methods in
addition to the required basic method,
Sort, (in ascending or descending)
Find, (find the name specified)
Print, (all names in a TEXT file)
Export, (all names to a TEXT file)
Import, (all names from a TEXT file)
Each data structure should use the following data items as specified:
Queue: Array
Stack: LinkList
Binary Tree: Pointers
2006-09-26
05:12:51
·
1 answers
·
asked by
Anonymous
in
Computers & Internet
➔ Programming & Design