0% found this document useful (0 votes)
20 views

Data Structure Programs5thsem

The document provides a list of 10 programming problems related to data structures for a programming lab. The problems include implementing linear and binary search, function overloading to calculate area of shapes, sorting arrays with bubble and insertion sort, implementing stacks with push and pop, recursion to calculate factorials and print Fibonacci series, multiple inheritance in C++, and operations on queues including insertion, deletion, and searching.

Uploaded by

Vaibhav Jain
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
20 views

Data Structure Programs5thsem

The document provides a list of 10 programming problems related to data structures for a programming lab. The problems include implementing linear and binary search, function overloading to calculate area of shapes, sorting arrays with bubble and insertion sort, implementing stacks with push and pop, recursion to calculate factorials and print Fibonacci series, multiple inheritance in C++, and operations on queues including insertion, deletion, and searching.

Uploaded by

Vaibhav Jain
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 2

PROGRAMMING LAB(VIIth SEM)

DATA STRUCTURE PROGRAMS-

1) Write a program to implement linear search.

2) Write a program to implement binary search.

3) Write a C++ program to find the area of circle,rectangle and square using
function overloading.(where radius and sides should be taken from user)

4) Write a program to sort a given array using bubble sort.

5) Write a program to implement push and pop operation in stack.

6) Write a recursive program to find factorial of a number entered by user and


print fibonicci series.

7) Write a c++ program to implement multiple inheritance.

8) Write a program to implement insertion,deletion and searching operation in


Queue.

9) Write a program for implementing insertion sort.


10) Write a program for sorting a given set of elements using selection sort.

You might also like