The document lists various programming assignments (WAP) focused on data structures and algorithms, including operations on arrays, linked lists, stacks, queues, and trees. It covers tasks such as insertion, deletion, traversal, sorting, and expression evaluation. Each program is numbered and includes a brief description of its functionality.
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 ratings0% found this document useful (0 votes)
4 views2 pages
Index
The document lists various programming assignments (WAP) focused on data structures and algorithms, including operations on arrays, linked lists, stacks, queues, and trees. It covers tasks such as insertion, deletion, traversal, sorting, and expression evaluation. Each program is numbered and includes a brief description of its functionality.
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
You are on page 1/ 2
SNo.
PROGRAM NAME DATE REMARK
1 WAP to implement arrays (insert, delete, and
traverse).
2 WAP to find the sum and mean of a 1-D array
3 WAP to display the largest and smallest elements of
an array
4 WAP to implement a matrix and its functions
5 WAP to implement linked list and its functions
(a) Insertion at the beginning of singly linked list (b)Delete an element from the beginning of a singly linked list (c) Traverse a singly linked list
6 WAP to implement a stack
7 WAP to implement a queue and its operations
8 WAP to convert an infix expression to a prefix
expression
9 WAP to evaluate postfix, prefix expressions using
stack
10 WAP for preorder, inorder, and postorder traversal of
a binary tree
11 WAP to perform linear and binary search on an array