摘要:
#include using namespace std;int Binary_search(int A[],int n,int k){ int left=0,right=n-1; while (leftA[middle]) { left=middle+1; } else { ... 阅读全文
摘要:
#include using namespace std;void Maxheapify(int A[],int i,int size){ int left=2*i,right=2*i+1,largest; if (leftA[i]) { largest=left; } else { la... 阅读全文
摘要:
出自:http://hi.baidu.com/mucenl/blog/item/f1b1f2386306a33796ddd873.html 1、下载http://www.baisi.net/thread-3667-1-1.html中ReTurner.D提供的gdb压缩包,然后将gdb-200... 阅读全文