Describe the sort pattern. Discuss the quick sort routines in terms of this pattern.
What will be an ideal response?
Sort array
1)Get split point and Split two parts
2)Sort first part(recursive)
3)Sort second part (recursive)
4)Join sorted parts.
Computer Science & Information Technology
You might also like to view...
Which of the following storage technologies provides block-level data access to storage volumes and arrays? (Choose two.)
A. Optical drive B. DAS C. NAS D. SAN E. CIFS F. NFS
Computer Science & Information Technology
The line of code that will declare an array and initialize it is:
a) int list [6] = {4, 7, 8, 2, 9, 5}; b) int list [6] {4, 7, 8, 2, 9, 5}; c) int list [6] = (4, 7, 8, 2, 9, 5); d) int list [6] (4, 7, 8, 2, 9, 5);
Computer Science & Information Technology