Code for singly linked list | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
- 3

Code for singly linked list

6. Develop algorithms using dynamic variables and pointers, to construct a singly linked list consisting of the following information in each node: student id (integer), student name (character string) and semester (integer). The operations to be supported are: a. Inserting a nodei) at the front of a list ii) at the rear of the list ii) at any position in the list c. Searching a node based on student id. If the specified node is not present in the list an error message should be displayed. b. Deleting a node based on student id. If the specified node is not present in the list, an error Message should be displayed. d. Displaying all the nodes in the list. Code the same in C++

23rd Jul 2022, 6:37 AM
G Ganesh
1 Resposta
+ 3
G Ganesh, the title says "Code for singly linked list" but I don't see any code here. What is your question? (Please don't say you want someone to write the code for you.)
23rd Jul 2022, 7:39 AM
Brian
Brian - avatar