Sr.No |
Name Of Practical |
VIEW |
1 |
Write a ‘C’ program
to accept and sort n elements in ascending order by using bubble sort |
|
2 |
Write a ‘C’ program to accept and sort n elements inascending order using Selection sort method. |
|
3 |
Write menu driven program
using ‘C’ for Binary SearchTree. The menu includes - Create a Binary Search Tree
,Insert element in a Binary
Search Tree and Display |
|
4 |
Write a ‘C’ program to
create a random array of n integers.Accept a value x from
user and use Binary search
algorithm to check
whether the number is present in array or not |
|
5 |
Write a ‘C’ program which
accept the string and check whetherthe string is Palindrome or not using stack. (Use
Static/Dynamicimplementation of Stack) |
|
6 |
Write a ‘C’ program to accept an infix expression, convert it into its equivalent postfix expression and display the result.(Use Dynamic
Implementation of Stack) |
|
7 |
Write a ‘C’ program to create
a singly linked list and count
totalnumber of nodes
in it and display the list and
total number of Nodes. |
|
8 |
Write a ‘C’ program to
create a singly Link list and display itsalternative nodes. (start displaying from first node) |
|
9 |
Write a ‘C’ program to create Circularly Doubly Linked listand display it. |
|
10 |
Write a program to accept
a postfix expression and evaluate theexpression using the stack. |