what is shorting ? state various algorithm used in it
Answers
Answered by
1
Answer:
the process of separating hair of different textures from the fleece is called shorting
Answered by
1
Answer:
sorting : Efficient sorts. Practical general sorting algorithms are almost always based on an algorithm with average time complexity (and generally worst-case complexity) O(n log n), of which the most common are heap sort, merge sort, and quicksort.
Types of Sorting Techniques:
- Bubble Sort.
- Selection Sort.
- Merge Sort.
- Insertion Sort.
- Quick Sort.
- Heap Sort.
Explanation:
Quicksort:
Quicksort — The Best Sorting Algorithm? The time complexity of Quicksort is O(n log n) in the best case, O(n log n) in the average case, and O(n^2) in the worst case. But because it has the best performance in the average case for most inputs, Quicksort is generally considered the “fastest” sorting algorithm
Similar questions