Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Q1 Implement the binary search &sequential search algorithms is C language. Uset

ID: 3611946 • Letter: Q

Question

Q1      Implement the binary search &sequential search algorithms is C language.
           Usethese values to search 8 from them. 12,13,8,11,9,4,16

Q2     Write a program in C language that caninsert an element at the start, and end with a doubly link
          list.

Q3      Write a manual steps to sort thegiven data by Bubble sort. Values are 12,1,9,10,5,4,16,11,8

Q4      Perform the manual steps ofinsertion sort, bubble sort and selection sort for the followingvalues
          9,12,15,1,2,14,10,11


Explanation / Answer

please rate - thanks Cramster rule--1 question per post for a binary search the numbers must be sorted, so I sorted themmanually #include #include int main() {int i,id[7]={4,8,9,11,12,13,16},key=8,max=7,low=0,mid,found=0; for(i=0;i