Sorting Flashcards

1
Q

Name the three sorting algorithms

A
  • Bubble Sort
  • Selection Sort
  • Insertion Sort
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

True or False: Bubble Sort is the most efficient sorting algorithm.

A

False

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

How does Bubble Sort work?

A

By repeatedly passing over the list, comparing pairs of adjacent items and swapping them if necessary.

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

What is the maximum number of comparisons in Bubble Sort for an array of size N?

A

N*(N-1)/2

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

What is the key action of a Bubble Sort algorithm?

A

Swapping adjacent elements if they are in the wrong order.

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

What is the basic action of Selection Sort?

A

Search for the smallest item and place it at the beginning of the list.

This is if we want a list in ascending order

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

In Selection Sort, how many swaps are made on each pass?

A

One swap.

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

How does Insertion Sort operate?

A

By extracting each item in turn from the unsorted list and inserting it into the sorted part.

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

Which sorting algorithm is considered the best among the three discussed?

A

Insertion Sort

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

What is the method provided by Java for natural ordering?

A

Comparable interface

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

What does the compareTo method return when two objects are equal?

A

0

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

How many for loops are required when implementing a Bubble Sort algorithm?

A

Two

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

What happens to the number of elements to sort at the end of each pass in Selection Sort?

A

It is reduced by 1.

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

What is the average number of swaps in Bubble Sort?

A

N*(N-1)/4

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

What is the complexity of sorting algorithms based on?

A
  • Number of comparisons
  • Number of re-assignments
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is the method defined in the Comparable interface?

A

int compareTo(Object o)

This method compares the current object with another object.

17
Q

What condition is checked in the bubble sort algorithm to determine if a swap is needed?

A

data[in].compareTo(data[in+1]) > 0

This condition checks if the current object is greater than the next one.

18
Q

What condition is checked to find a new minimum in the selection sort algorithm?

A

data[in].compareTo(data[min]) < 0

This condition checks if the current object is less than the current minimum.

19
Q

Which sorting algorithm is considered the simplest?

A

Bubbele

Selection Sort is often regarded as the simplest sorting algorithm.

20
Q

Which sorting algorithm is considered the most efficient?

A

Insertion

Insertion Sort can be more efficient in practice for small or partially sorted datasets.

21
Q

How many swaps are in a selection sort?