- Create a Circular queue using HKU array structure (copy from array into queue will be done).
- Using circular queue which is populated at step 1, Create two new circular queues, one for Computer Engineering students and one for English students. These new queues will be created using department fields for determining Computer Engineering (CE) and English (E) queues.
- Print the contents of Computer Engineering QUEUE and English QUEUE.
Using struct Student HKU [10]
- Create a list of ten nodes, sorted using TC.
- Create a list of ten nodes, sorted using Student_name.
- Append an element that contains the information of new students to the beginning of a list
- Append an element that contains the information of new students as a second node in the list
- Delete the first element from a list.
- Delete the nth element from a list.
- Insert an element before the nth element of a list.
- Free all nodes in a list.
- Concatenate two lists.