Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
0% found this document useful (0 votes)
3 views

Programs

The document lists various programming tasks related to data structures, including operations on arrays, linked lists, and binary search trees. It covers implementations for insertion, deletion, searching, and sorting algorithms. The tasks are designed to enhance understanding of fundamental data structure concepts using C++.

Uploaded by

studyhour777
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views

Programs

The document lists various programming tasks related to data structures, including operations on arrays, linked lists, and binary search trees. It covers implementations for insertion, deletion, searching, and sorting algorithms. The tasks are designed to enhance understanding of fundamental data structure concepts using C++.

Uploaded by

studyhour777
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

S.

Name of Programs
No.
1 Write a code to implement insertion and deletion of data element in an array.
2 Write a program to implement STACK using linear array.
3 Write a Program for Linear Search of an element in an array.
4 Write a Program to Implement Binary Search on Sorted Array.
5 Write a program to implement QUEUE using array.
6 Write a program to implement CIRCULAR QUEUE using array.
7 Write a program to implement PRIORITY QUEUE using array.
8 Write a C++ program to perform insertion at beginning of linked list.
9 Write a C++ program to perform insertion at ending of linked list.
10 Write a program to insert a new node in linked list after given node.
11 Write a code to implement deletion from head in Linked List.
12 Write a code to implement deletion of given node in Linked List.
13 Write a code to implement deletion from end in Linked List.
14 Write a code to implement stack using Linked List.
15 Write a code to implement QUEUE using Linked List.
16 Write a code to implement insertion and deletion from starting in a doubly Linked List.
17 Write a code to implement insertion & deletion from a given node using doubly Linked List.
18 Write a code to implement insertion & deletion from end of a double Linked List.
19 Write a code to implement insertion & deletion from front using circular Linked List.
20 Write a code to implement insertion & deletion from end using circular Linked List.
21 Write a code to implement insertion & deletion from middle using circular Linked List.
22 Write a program for in order traversing of Binary Search Tree.
23 Write a Program for preorder traversing of Binary Search Tree.
24 Write a Program for post order traversing of Binary Search Tree.
25 Write a program to implement selection sort on a linear array.
26 Write a program to implement bubble sort on a linear array.
27 Write a program to implement insertion sort on a linear array.
28 Write a program to implement quick sort on a linear array.
29 Write a program to implement merge sort on a linear array.
30 Write a program to implement heap sort on a linear array.

You might also like