Sort Algorithm Flashcards

1
Q

Insertion Sort :

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Bubble Sort :

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Selection Sort : put the biggest number to the end of the list

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

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

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What’s merge sort?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How to implement Merge function ?

1.Create left & right array
2.Compare & add
3. Add rest numbers

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What’s heap?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

How does heapitfy looks like?

A

index defined rule you have to know :

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How to implement heapitfy in C ?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How to implement heap sort in C?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What’re the procedures of heap sort?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

How to implement binary insertion sort in C?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

How to implement shell sort ?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

How to implement shell sort in C ?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What’s radix sort in sumary ?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

How to elucidate the four for loops for implementing Radix Sort?

A
17
Q

How to implement Radix Sort in C ?

Hints : the crux function of Radix Sort

A
18
Q

Radix Sort : implemented in C

A
19
Q

How to implement Quick Sort?

A
20
Q

How to implementQuick Sort in C ?

A
21
Q

Selection Sort : find the smallest number

A
22
Q

What’s the categories of sort algorithm?

A