CSE21P6 - Data Structure Lab¶
Linked Lists¶
Term 161¶
Exp 3. Write a program to implement insertion operation of a linked list.
Exp 4. Write a program to perform deletion operation of a linked list.
Term 171¶
Exp 8. Write a program in C to insert an item in a list using linked list.
Exp 9. Write a program in C to search an element in a linked list.
Term 191¶
Exp 3. Write a C program to search an element in a linked list.
Exp 4. Write a C program to delete a node from linked list.
Term 211¶
Exp 5. Implement Linked list of integer element 2, 4, 6, 8, 10. Take input from user an item to delete from the list and finally display the list of elements.
Exp 6. Design, Develop and Implement a menu driven Program in C for the following operations on Singly Linked List (SLL) of Student Data with the fields: Stu ID, Name, Batch, Sem, PhNo.
- Create a SLL of N Students Data by using front insertion.
- Display the status of SLL and count the number of nodes in it.
- Perform Insertion and Deletion at End of SLL.
- Perform Insertion and Deletion at Front of SLL.