Загрузка страницы

Doubly Linked List Java assignment (part 2, node class setup) | Data Struct. & Algorithm Analysis

More Data Structures and Algorithm Analysis videos:
https://youtube.com/playlist?list=PLZPy7sbFuWViIs2tnMRzkr6-1Pr2I3o3o
(Infix to Postfix videos in playlist)

Notes for Data Structures and Algorithm Analysis:
https://docs.google.com/document/d/1YU8wUtH0_bOHlAM1MqOAbxnZhQQBJ0yHYA-lNPafgkM/edit?usp=sharing
Assignment Instructions:
Write a program that reads a list of students (first names only) from a file. It is possible for the names to be in unsorted order in the file but they have to be placed in sorted order within the linked list.

The program should use a doubly linked list.

Each node in the doubly linked list should have the student’s name, a pointer to the next student, and a pointer to the previous student. Here is a sample visual. The head points to the beginning of the list. The tail points to the end of the list.

When inserting consider all the following conditions:

if(!head){ //no other nodes
}else if (strcmp(data, head-} name) { 0){ //smaller than head
}else if (strcmp(data, tail-} name) } 0){ //larger than tail
}else{ //somewhere in the middle
}

When deleting a student consider all the following conditions:
student may be at the head, the tail or in the middle
Below, you will find a sample of what the file looks like. Notice the names are in unsorted order but the information placed in the linked list (above visual) is in sorted order. The name of the file should be “input.txt”.

In the text file, the word delete followed by a name, should delete the node with that specific student’s name from the doubly linked list. If the name is not found, then nothing is deleted.

(NOTE: The above visual represents only the first three lines from the text file below.)

Jim
jill
John
delete jill
Bob
Jack
delete jim

At the end of the program, traverse through the contents of the linked list in both ascending and descending order, using the doubly linked list, and write the contents into the file output.txt. For example, given the above list, here is the sample display:

Bob
Jack
John
=============
John
Jack
Bob
Here is a Q&A link to some of your possible questions. Please email me any further questions and I will update the google document with some helpful hints.
-----
https://docs.google.com/document/d/1FEX_RshlEqc1Judd6eD_JZqIuHNjylPapH1PuDZ_tr8/edit?usp=sharing

Видео Doubly Linked List Java assignment (part 2, node class setup) | Data Struct. & Algorithm Analysis канала Computer Engineering life
Страницу в закладки Мои закладки
Все заметки Новая заметка Страницу в заметки