Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for heapSort_func (0.18 sec)

  1. src/sort/zsortfunc.go

    		if child+1 < hi && data.Less(first+child, first+child+1) {
    			child++
    		}
    		if !data.Less(first+root, first+child) {
    			return
    		}
    		data.Swap(first+root, first+child)
    		root = child
    	}
    }
    
    func heapSort_func(data lessSwap, a, b int) {
    	first := a
    	lo := 0
    	hi := b - a
    
    	// Build heap with greatest element at top.
    	for i := (hi - 1) / 2; i >= 0; i-- {
    		siftDown_func(data, i, hi, first)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 13 20:16:24 UTC 2022
    - 11.5K bytes
    - Viewed (0)
Back to top