Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

class BinaryHeap
{
public:
explicit BinaryHeap(int capacity = 100);
explicit BinaryHeap(const vector<char> & items);
bool isEmpty( ) const;
const char & findMin( ) const;
myNode.left = myHeap.deleteMin();
myNode.right = myHeap.deleteMin();
//
// AppDelegate.m
// ApiClient
//
// Created by Tencent on 12-2-27.
// Copyright (c) 2012 Tencent. All rights reserved.
//
#import "AppDelegate.h"
#import "WXApi.h"