logo

Array List Operations using C++

   

Added on  2019-09-16

2 Pages251 Words292 Views
 | 
 | 
 | 
By using C++We use arrays to implement lists and perform different searching and sorting algorithms on those lists.Your program should include one function for each of the operations, as well as a main function for testing each.Part A:1.Fill Array _ fill an array list with random integers2.Print Array-3.segSearch-part B:1. BubbleSort2. BinarySearch3. SelectionSort N.B you can edit and follow this code // squential searching and sorting C++programe #include <iostream>using namespace std;int seqSearchItem (int list [], int length, int item){ int loc; bool found = false; for (loc = 0; loc < length; loc++) { if (list [loc] == item) { found = true; break; } } if (found) return loc; else return -1;}
Array List Operations using C++_1

End of preview

Want to access all the pages? Upload your documents or become a member.

Related Documents