0% found this document useful (0 votes)
5 views24 pages

Dsfile

The document outlines a series of programming tasks related to array manipulation and operations. It includes programs for traversing, inserting, deleting, copying, searching, sorting, merging, and performing operations on both one-dimensional and two-dimensional arrays. Additionally, it mentions implementing stack and queue data structures using arrays and reversing a string using a string library.

Uploaded by

anushkadhopraa
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)
5 views24 pages

Dsfile

The document outlines a series of programming tasks related to array manipulation and operations. It includes programs for traversing, inserting, deleting, copying, searching, sorting, merging, and performing operations on both one-dimensional and two-dimensional arrays. Additionally, it mentions implementing stack and queue data structures using arrays and reversing a string using a string library.

Uploaded by

anushkadhopraa
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
You are on page 1/ 24

Write a program to traverse the element of array.

Write a program insert the new element in an array.


Write a program to delete an element from an array.
Write a program to copy element from one array to another array.
Write a program to perform linear search on an array
Write a program to perform the binary search on an array.
Write a program to perform the bubble sort.
Write a program to perform selection sort
Write a program to merge element of two array into third array.
Write a program insert an element into 2 d array
Write a program to addition operation on 2 d array.
Write a program to perform the transpose operation on 2 d array
Write a program to implement stack using array.
Write a program to implement queue using array
Write a program to reverse a string using string library.

You might also like