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

List of Practical S.E E&Tc

The document lists 14 practical programming assignments to implement various data structures and algorithms using C programming language. The assignments include writing programs to implement searching methods, sorting algorithms like bubble, selection, and insertion sort, database management using arrays of structures, polynomial addition using arrays of structures, linked lists, stacks, queues, postfix expression evaluation, binary search trees, and graph traversal algorithms like breadth-first search and depth-first search using adjacency matrix and recursion.

Uploaded by

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

List of Practical S.E E&Tc

The document lists 14 practical programming assignments to implement various data structures and algorithms using C programming language. The assignments include writing programs to implement searching methods, sorting algorithms like bubble, selection, and insertion sort, database management using arrays of structures, polynomial addition using arrays of structures, linked lists, stacks, queues, postfix expression evaluation, binary search trees, and graph traversal algorithms like breadth-first search and depth-first search using adjacency matrix and recursion.

Uploaded by

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

LIST OF PRACTICAL

S.E E&TC

Write Programs in C to implement searching methodsLinear & Binary. Write Programs in C to implement Bubble Sorting. Write Programs in C to implement Selection Sorting. Write Programs in C to implement Insertion Sorting. Write Programs in C to implement Data base Management using array of structure with operations Create, display, Modify, Append, Search and sort. Write Programs in C to implement Polynomial addition using array of structure. Write Programs in C to implement singly linked list with operations Create, Insert, Delete, and Search. Write Programs in C to implement Stack using arrays. Write Programs in C to implement Stack using linked list. Write Programs in C to implement Queue using array. Write Programs in C to implement Queue using Linked Lists Write Programs in C to implement Evaluation of postfix expression (input will be postfix expression) Write Programs in C to implement Binary search tree: Create, search, recursive traversals. Write Programs in C to implement Graph using adjacency Matrix with BFS. Write Programs in C to implement DFS traversals.

You might also like