SlideShare a Scribd company logo
ALPHA COLLEGE OF ENGINEERING & TECHNOLOGY
LIST OF EXPERIMENTS
SUBJECT NAME: DS SUB CODE: 2130702
SR.
NO.
TITLE
.
a) Introduction to pointers. Call by Value and Call by reference.
b) Introduction to Dynamic Memory Allocation. DMA functions malloc(), calloc(),
free() etc.
2.
Implement a program for stack that performs following operations using array.
(a) PUSH (b) POP (c) PEEP (d) CHANGE (e) DISPLAY
3. Implement a program to convert infix notation to postfix notation using stack.
4.
A) Write a program to implement QUEUE using arrays that performs following
operations (a) INSERT (b) 1DELETE (c) DISPLAY
B) Write a program to implement Circular Queue using arrays that performs
following operations. (a) INSERT (b) DELETE (c) DISPLAY
5.
Write a menu driven program to implement following operations on the singly linked
list.
(a) Insert a node at the front of the linked list.
(b) Insert a node at the end of the linked list.
(c) Insert a node such that linked list is in ascending order.(according to info. Field)
(d) Delete a first node of the linked list.
(e) Delete a node before specified position.
(f) Delete a node after specified position.
6. Write a program to implement stack and queue using linked list.
7.
Write a program to implement following operations on the doubly linked list.
(a) Insert a node at the front of the linked list.
(b) Insert a node at the end of the linked list.
(c) Delete a last node of the linked list.
(d) Delete a node before specified position.
8. Write a program which create binary search tree. Implement tree traversing methods.
9.
Write a program to implement following searching methods
a) Linear Search.
b) Binary Search.
10.
Write a program to implement following sorting methods
a) Bubble Sort
b) Merge Sort
c) Queue Sort

More Related Content

PPTX
WF ED 540, Class Meeting 3, 10 Septmber 2015
PPTX
Project of data structure
PDF
DOCX
PPT
computer notes - Data Structures - 6
PPT
Stack linked list
PDF
Write a program to show the example of hybrid inheritance.
PPT
Computer notes - Hashing
WF ED 540, Class Meeting 3, 10 Septmber 2015
Project of data structure
computer notes - Data Structures - 6
Stack linked list
Write a program to show the example of hybrid inheritance.
Computer notes - Hashing

What's hot (20)

PDF
201707 SER332 Lecture 16
PPTX
Complex inner joins
PPTX
Stack organization
PDF
Stack push pop
DOCX
Assignment2
PPTX
Introduction to pig
PPT
computer notes - Data Structures - 35
PPT
Algo>Stacks
DOCX
D404 ex-4-2
PPT
Core 3 Functions 1
TXT
Defining Function In Python
PDF
PPTX
Unit ii linear data structures
PPT
Stacks overview with its applications
PPT
MEngine Overview
PPTX
Exercise6 ch2
PPT
Stack a Data Structure
PDF
Web 2 . .3 Development Services
PDF
FSB: TreeWalker - SECCON 2015 Online CTF
201707 SER332 Lecture 16
Complex inner joins
Stack organization
Stack push pop
Assignment2
Introduction to pig
computer notes - Data Structures - 35
Algo>Stacks
D404 ex-4-2
Core 3 Functions 1
Defining Function In Python
Unit ii linear data structures
Stacks overview with its applications
MEngine Overview
Exercise6 ch2
Stack a Data Structure
Web 2 . .3 Development Services
FSB: TreeWalker - SECCON 2015 Online CTF
Ad

Viewers also liked (12)

DOCX
Program to remove Left factoring
DOCX
Assigment cd
DOCX
Practical List COMPILER DESIGN
DOCX
Compiler Design Material
PPTX
Compiler First Set Follow Set Brief
PPTX
Ch 02 (1)
PDF
Compiler design tutorial
PDF
Cd lab manual
PDF
Parsing example
PDF
Compiler design lab programs
PPT
First and follow
PPTX
Free consent
Program to remove Left factoring
Assigment cd
Practical List COMPILER DESIGN
Compiler Design Material
Compiler First Set Follow Set Brief
Ch 02 (1)
Compiler design tutorial
Cd lab manual
Parsing example
Compiler design lab programs
First and follow
Free consent
Ad

Similar to Ds list of experiments ce (20)

DOC
CS8391 Data Structures Part B Questions Anna University
DOCX
Ds important questions
PDF
Notes of bca Question paper for exams and tests
DOC
Final ds record
PDF
Lab02kdfshdfgajhdfgajhdfgajhdfgjhadgfasjhdgfjhasdgfjh.pdf
DOCX
Data-Structure-Algorithms-.docx
PPTX
UNIT I LINEAR DATA STRUCTURES – LIST .pptx
DOC
2 marks- DS using python
PDF
Data Structure.pdf
PPTX
DSA_Ques ewoifhjerofhefhehfreofheek.pptx
PDF
CS8391-DATA-STRUCTURES.pdf
PDF
CS8391-DATA STRUCTURE.pdf1111111111111111
PPTX
Data structure.pptx
DOCX
Programs for lab exam purpose external s
DOCX
Programms for lab externa l purpose only
DOCX
Stack q ll algo
PPTX
Data Structures_Linked List
PPTX
5.Linked list
PDF
need on c++ Task 1 Design a class for Singly linked List wi.pdf
PDF
For this homework, you will write a program to create and manipulate.pdf
CS8391 Data Structures Part B Questions Anna University
Ds important questions
Notes of bca Question paper for exams and tests
Final ds record
Lab02kdfshdfgajhdfgajhdfgajhdfgjhadgfasjhdgfjhasdgfjh.pdf
Data-Structure-Algorithms-.docx
UNIT I LINEAR DATA STRUCTURES – LIST .pptx
2 marks- DS using python
Data Structure.pdf
DSA_Ques ewoifhjerofhefhehfreofheek.pptx
CS8391-DATA-STRUCTURES.pdf
CS8391-DATA STRUCTURE.pdf1111111111111111
Data structure.pptx
Programs for lab exam purpose external s
Programms for lab externa l purpose only
Stack q ll algo
Data Structures_Linked List
5.Linked list
need on c++ Task 1 Design a class for Singly linked List wi.pdf
For this homework, you will write a program to create and manipulate.pdf

Ds list of experiments ce

  • 1. ALPHA COLLEGE OF ENGINEERING & TECHNOLOGY LIST OF EXPERIMENTS SUBJECT NAME: DS SUB CODE: 2130702 SR. NO. TITLE . a) Introduction to pointers. Call by Value and Call by reference. b) Introduction to Dynamic Memory Allocation. DMA functions malloc(), calloc(), free() etc. 2. Implement a program for stack that performs following operations using array. (a) PUSH (b) POP (c) PEEP (d) CHANGE (e) DISPLAY 3. Implement a program to convert infix notation to postfix notation using stack. 4. A) Write a program to implement QUEUE using arrays that performs following operations (a) INSERT (b) 1DELETE (c) DISPLAY B) Write a program to implement Circular Queue using arrays that performs following operations. (a) INSERT (b) DELETE (c) DISPLAY 5. Write a menu driven program to implement following operations on the singly linked list. (a) Insert a node at the front of the linked list. (b) Insert a node at the end of the linked list. (c) Insert a node such that linked list is in ascending order.(according to info. Field) (d) Delete a first node of the linked list. (e) Delete a node before specified position. (f) Delete a node after specified position. 6. Write a program to implement stack and queue using linked list. 7. Write a program to implement following operations on the doubly linked list. (a) Insert a node at the front of the linked list. (b) Insert a node at the end of the linked list. (c) Delete a last node of the linked list. (d) Delete a node before specified position. 8. Write a program which create binary search tree. Implement tree traversing methods.
  • 2. 9. Write a program to implement following searching methods a) Linear Search. b) Binary Search. 10. Write a program to implement following sorting methods a) Bubble Sort b) Merge Sort c) Queue Sort