0% found this document useful (0 votes)
18 views1 page

C Programming: Data Structures & Algorithms

The document outlines a series of programming tasks in C, including implementations of various data structures and algorithms such as bubble sort, queue, stack, linear search, and recursion. Each task is presented in pairs, focusing on different sorting methods, search techniques, and linked list operations. The document serves as a comprehensive guide for practicing fundamental programming concepts in C.

Uploaded by

lavanya.d
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
18 views1 page

C Programming: Data Structures & Algorithms

The document outlines a series of programming tasks in C, including implementations of various data structures and algorithms such as bubble sort, queue, stack, linear search, and recursion. Each task is presented in pairs, focusing on different sorting methods, search techniques, and linked list operations. The document serves as a comprehensive guide for practicing fundamental programming concepts in C.

Uploaded by

lavanya.d
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

1.a. Write a C program to implement bubble sort.

b. Write a C program to implement queue using Linked List.

2. a. Write a C program to implement stack using Linked List.


b. Write a C program to find factorial of a given number using recursion.

3. a. Write a C program to implement linear search.


b. Write a C program to implement insertion sort.

4. a. Write a C program to reverse an array using C.


b. Write a C program to implement Fibonacci series using recursion.

5. a. Write a C program to implement stack using arrays.


b. Write a C program to implement Binary search.

6. a. Write a C program to implement double linked list operations.


b. Write a C program to implement selection sort.

7. a. Write a C program to implement circular linked list operations.


b. Write a C program to implement queue using arrays.

8. a. Write a C program to implement merge sort.


b. Write a C program to find min and max elements of an Array using Recursive functions.

9. a. Write a C program to implement basic operations on array: insertion, deletion, searching.


b. Write a C program to implement Fibonacci series using recursion.

10. a. Write a C program that implements the Perform Insertion in a BST.


b. Write a C program to implement single linked list operations.

11. a. Write a C program to implement Binary search using recursion.


b. Write a C program to implement quick sort.

12. a. Write a C program to implement linear search.


b. Write a C program to implement stack using Linked List.

You might also like