0% found this document useful (0 votes)
32 views5 pages

DSA - Practical 8 Linked List

implementation of linked list
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
32 views5 pages

DSA - Practical 8 Linked List

implementation of linked list
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 5

Data Structure & Algorithm Qusai Cutleriwala 22000265

NAVRACHANA UNIVERSITY

SCHOOL OF ENGINEERING & TECHNOLOGY


Bachelor of Computer Applications Program

CLASS: First Year – BCA

SEMESTER: 2

COURSE: Data Structures and Algorithms

SUBJECT CODE: CMP212

ACADEMIC YEAR: 2022 -23 (SPRING)

PRACTICAL 8

STUDENT ID:22000265

NAME: Qusai Cutlery

AIM: Implement linked list in python.


Data Structure & Algorithm Qusai Cutleriwala 22000265

Description: Linked list is a linear data structure that is used to store elements as a list.
Linked list has more flexibility than stack and queue. It can be used to create stack and
queue. It has numerous applications for organizing, manipulating and retrieving data in
various practical scenarios. Operations that can be done on linked list include insertion,
deletion and searching. Linked list can be singly linked list and doubly linked list.
Practical Outcome:
On performing this practical, students will be able to:
- Create singly linked list and doubly linked list
- Insert elements into linked list
- Delete elements from linked list
Software: Any IDE for python or CLI for python or online python coding environment
interpreter

TASK:
Perform the following practical and attach relevant screenshots for the
following:
1. WAP to implement a singly linked list in python.
Data Structure & Algorithm Qusai Cutleriwala 22000265

2. WAP to implement a doubly linked list in python


Data Structure & Algorithm Qusai Cutleriwala 22000265
Data Structure & Algorithm Qusai Cutleriwala 22000265

3. WAP to insert 10 elements in a linked list.

----------------------------------END OF PRACTICAL ----------------------------------------------

You might also like