Home  >  Article  >  Backend Development  >  python heap sort algorithm example code

python heap sort algorithm example code

伊谢尔伦
伊谢尔伦Original
2017-06-28 13:47:251429browse

python To implement the heap sorting algorithm code, friends who need it can refer to it

The code is as follows:

#!/usr/bin/python 
import sys 
def left_child(node): 
return
 node * 2 + 1 
def 
right
_child(node): 
return node * 2 + 2 
def parent(node): 
if (node % 2): 
return (i - 1) / 2 
else: 
return (i - 2) / 2 
def max_heapify(
array
, i, heap_size): 
l = left_child(i) 
r = right_child(i) 
largest = i 
if l < heap_size and array[l] > array[i]: 
largest = l 
if r < heap_size and array[r] > array[largest]: 
largest = r 
if largest != i: 
array[i], array[largest] = array[largest], array[i] 
max_heapify(array, largest, heap_size) 
def build_max_heap(array): 
for i in 
range
(len(array) / 2, -1, -1): 
max_heapify(array, i, len(array)) 
def heap_sort(array): 
build_max_heap(array) 
for i in range(len(array) - 1, 0, -1): 
array[0], array[i] = array[i], array[0] 
max_heapify(array, 0, i) 
if name == "
main
": 
array = [0, 2, 6, 98, 34, -5, 23, 11, 89, 100, 7] 
heap_sort(array) 
for a in array: 
sys.stdout.write("%d " % a)


The above is the detailed content of python heap sort algorithm example code. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn