Sort Algorithm Flashcards
Insertion Sort :
Bubble Sort :
Selection Sort : put the biggest number to the end of the list
How to implement Insertion Sort : by defining two functions
Hints :
1.all datas bigger than key move to rear
2.insert until find data smaller than key
What’s merge sort?
How to implement Merge function ?
1.Create left & right array
2.Compare & add
3. Add rest numbers
What’s heap?
How does heapitfy looks like?
index defined rule you have to know :
How to implement heapitfy in C ?
How to implement heap sort in C?
What’re the procedures of heap sort?
How to implement binary insertion sort in C?
How to implement shell sort ?
How to implement shell sort in C ?
What’s radix sort in sumary ?
How to elucidate the four for loops for implementing Radix Sort?
How to implement Radix Sort in C ?
Hints : the crux function of Radix Sort
Radix Sort : implemented in C
How to implement Quick Sort?
How to implementQuick Sort in C ?
Selection Sort : find the smallest number
What’s the categories of sort algorithm?