By using C++. We use arrays to implement lists and perf
Added on - 16 Sep 2019
2
pages
251
Words
70
Views
0
Downloads
By using C++We use arrays to implement lists and perform different searching and sortingalgorithms on those lists.Your program should include one function for each of the operations, as well as amain 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. SelectionSortN.Byou 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;elsereturn -1;}

You’re reading a preview

To View Complete Document
Become a Desklib Library Member.
Subscribe to our plans