脑袋不够用,所以记录下来
python 版本 构建 最大堆
class Utils(object):
@staticmethod
def buildMaxHeap(l=None,heap_size=None):
if heap_size is None:
heap_size = len(l)
for i in range(heap_size//2,0,-1):
Utils.maxHeapify(heap_size,i,l)
@staticmethod
def maxHeapify(heap_size,rootIndex,l=None):
left,right,largest = 2*rootIndex,2*rootIndex+1,rootIndex
if left<=heap_size and l[left-1] > l[rootIndex-1]:
largest = left
if right<=heap_size and l[right-1] > l[largest-1]:
largest = right
if largest!=rootIndex:
l[largest-1],l[rootIndex-1] = l[rootIndex-1],l[largest-1]
if largest <= heap_size//2:
Utils.maxHeapify(heap_size,largest,l)
print(l)
if __name__ == '__main__':
l = [10,9,3,2,4,6,5,7,8]
print(l)
Utils.buildMaxHeap(l)
print(l)
改为 堆排序
class Utils(object):
@staticmethod
def buildMaxHeap(l=None,heap_size=None):
if heap_size is None:
heap_size = len(l)
for i in range(heap_size//2,0,-1):
Utils.maxHeapify(heap_size,i,l)
@staticmethod
def maxHeapify(heap_size,rootIndex,l=None):
left,right,largest = 2*rootIndex,2*rootIndex+1,rootIndex
if left<=heap_size and l[left-1] > l[rootIndex-1]:
largest = left
if right<=heap_size and l[right-1] > l[largest-1]:
largest = right
if largest!=rootIndex:
l[largest-1],l[rootIndex-1] = l[rootIndex-1],l[largest-1]
if largest <= heap_size//2:
Utils.maxHeapify(heap_size,largest,l)
@staticmethod
def heapSort(l=None):
Utils.buildMaxHeap(l)
for i in range(len(l)-1,0,-1):
l[0],l[i] = l[i],l[0]
Utils.buildMaxHeap(l,i)
if __name__ == '__main__':
l = [10,9,3,2,4,6,5,7,8]
print(l)
Utils.heapSort(l)
print(l)
java 版
package com.ghc.starter.algorithm;
public class SortUtils {
public static int [] array = {10,9,3,2,4,6,5,7,8};
public static void main(String [] args){
printArray(array);
buildMaxHeap(array,array.length);
printArray(array);
heapSort(array);
printArray(array);
array = new int[]{10,9,3,2,4,6,5,7,8};
printArray(array);
bubbleSort(array);
printArray(array);
}
public static void quickSort(int [] array){
}
public static void bubbleSort(int [] array){
for(int i=0;i<array.length;i++){
for(int j=0;j<array.length-i-1;j++){
if(array[j]>array[j+1]){
swap(array,j,j+1);
}
}
}
}
public static void printArray(int [] array){
System.out.print("[");
for(int i=0;i<array.length;i++){
if(i!=array.length-1)
System.out.print(array[i]+",");
else System.out.println(array[i]+"]");
}
}
public static void heapSort(int [] array){
if(array==null || array.length<=1) return;
buildMaxHeap(array,array.length);
for(int i=array.length-1;i>0;i--){
swap(array,0,i);
buildMaxHeap(array,i);
}
}
public static void buildMaxHeap(int [] array,int heapSize){
for(int i=heapSize/2;i>0;i--){
maxHeapify(array,heapSize,i);
}
}
public static void maxHeapify(int [] array,int heapSize,int rootIndex){
int l = 2*rootIndex;
int r = l+1;
int largest = rootIndex;
if(l<=heapSize && array[l-1]>array[rootIndex-1]){
largest = l;
}
if(r<=heapSize && array[r-1]>array[largest-1]){
largest = r;
}
if(largest!=rootIndex){
swap(array,largest-1,rootIndex-1);
if(largest<=heapSize/2){
maxHeapify(array,heapSize,largest);
}
}
}
public static void swap(int [] array,int i,int j){
int temp = array[i];
array[i] = array[j];
array[j] = temp;
}
}