The document contains examples of programs to perform operations on arrays, matrices, strings, queues and linked lists using concepts like recursion, sorting, stacks and more. It includes programs to find maximum/minimum elements, insert/delete elements, calculate sum/average, sort arrays, check prime numbers, Fibonacci series, factorials and other standard data structure problems.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
30 views1 page
Index: S.No Content Signature Remarks
The document contains examples of programs to perform operations on arrays, matrices, strings, queues and linked lists using concepts like recursion, sorting, stacks and more. It includes programs to find maximum/minimum elements, insert/delete elements, calculate sum/average, sort arrays, check prime numbers, Fibonacci series, factorials and other standard data structure problems.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1
S.
NO CONTENT SIGNATURE REMARKS
WAP to find the largest element in an array 1 WAP to insert an element in an array 2 WAP to delete an element from an array 3 WAP to search an element in an array 4 WAP to enter 10 numbers in an array , calculate the 5 sum and average WAP to sort the elements of an array using insertion 6 sort WAP to sort the elements of an array using bubble 7 sort WAP to using recursion to check if the number is 8 prime or not WAP to using recursion to print Fibonacci series for 9 first 15 numbers WAP to (using recursion)to calculate the factorial 10 WAP to enter 2 matrix using 2-D arrays, calculate the 11 sum and display the resultant WAP to perform stack operations , push() and pop() 12 using arrays WAP to reverse a string using an array 13 WAP to insert an element , delete an element and 14 display the elements of a queue W.A.P to create a linked list, add elements, display the elements and delete an element from the linked list 15 W.A.P to perform a search operation using linked list: 16