Write a C++ programs to implement recursive and non recursive
Linear search
Binary search
Write a C++ programs to implement
Bubble sort
Selection sort
quick sort
insertion sort
Write a C++ programs to implement the following using an array.
Stack ADT
Queue ADT
Write a C++ programs to implement list ADT to perform following operations
Insert an element into a list.
Delete an element from list
Search for a key element in list
count number of nodes in list.
Write C++ programs to implement the following using a singly linked list.
Write C++ programs to implement the deque (double ended queue) ADT using a doubly linked list and an array.
Write a C++ program to perform the following operations:
Insert an element into a binary search tree.
Delete an element from a binary search tree.
Search for a key element in a binary search tree.
Write C++ programs for implementing the following sorting methods:
Merge sort
Heap sort
Write C++ programs that use recursive functions to traverse the given binary tree in
Preorder
in order
post order
Write a C++ program to perform the following operations
Insertion into a B-tree
Deletion from a B-tree.
Last updated 2 months ago
Was this helpful?