Advertisement

4 Sort a K Sorted Array Nearly Sorted Array

4 Sort a K Sorted Array Nearly Sorted Array Given an array of n elements, where each element is at most k away from its target position, devise an algorithm that sorts in O(n log k) time. For example, let us consider k is 2, an element at index 7 in the sorted array, can be at indexes 5, 6, 7, 8, 9 in the given array.

Example:
Input : arr[] = {6, 5, 3, 2, 8, 10, 9}
k = 3
Output : arr[] = {2, 3, 5, 6, 8, 9, 10}

Heap,Coding,Programming,Programming Patterns,Interview Questions,

Post a Comment

0 Comments