Add Binary Insertion Sort (#3206)

This commit is contained in:
tackhwa
2022-08-07 16:19:25 +08:00
committed by GitHub
parent b36f359076
commit d82a2006ba
2 changed files with 58 additions and 0 deletions

View File

@ -0,0 +1,32 @@
package com.thealgorithms.sorts;
public class BinaryInsertionSort{
// Binary Insertion Sort method
public int[] binaryInsertSort(int[] array){
for(int i = 1; i < array.length; i++){
int temp=array[i];
int low = 0;
int high = i - 1;
while(low <= high){
int mid = (low + high) / 2;
if(temp < array[mid]){
high = mid - 1;
}else{
low = mid + 1;
}
}
for(int j = i; j >= low + 1; j--){
array[j] = array[j - 1];
}
array[low] = temp;
}
return array;
}
}