Skip to content
Snippets Groups Projects
heap.go 1.25 KiB
Newer Older
  • Learn to ignore specific revisions
  •  * Copyright (C) 2017 Dgraph Labs, Inc. and Contributors
    
     * This program is free software: you can redistribute it and/or modify
     * it under the terms of the GNU Affero General Public License as published by
     * the Free Software Foundation, either version 3 of the License, or
     * (at your option) any later version.
    
     * This program is distributed in the hope that it will be useful,
     * but WITHOUT ANY WARRANTY; without even the implied warranty of
     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     * GNU Affero General Public License for more details.
    
     * You should have received a copy of the GNU Affero General Public License
     * along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    type elem struct {
    	val     uint64 // Value of this element.
    	listIdx int    // Which list this element comes from.
    
    type uint64Heap []elem
    
    func (h uint64Heap) Len() int           { return len(h) }
    func (h uint64Heap) Less(i, j int) bool { return h[i].val < h[j].val }
    func (h uint64Heap) Swap(i, j int)      { h[i], h[j] = h[j], h[i] }
    func (h *uint64Heap) Push(x interface{}) {
    	*h = append(*h, x.(elem))
    
    
    func (h *uint64Heap) Pop() interface{} {
    
    	old := *h
    	n := len(old)
    	x := old[n-1]
    	*h = old[0 : n-1]
    	return x
    }