摘要:
Lowest Common Ancestor of a Binary Search Tree Total Accepted: 203 Total Submissions: 511 Given a binary search tree (BST), find the lowest common anc 阅读全文
摘要:
//汉诺塔 void Hanoi(int n,string A,string B,string C){ if(n == 1) cout<<A<<"->"<<C<<endl; else{ Hanoi(n-1,A,C,B); cout<<A<<"->"<<C<<endl; Hanoi(n-1,B,A,C 阅读全文
摘要:
前段时间高通公司开源了眼下 较火的开源框架AllJoyn框架 个人对这个框架并不看好, 地址: http://blog.csdn.net/ncscan/article/details/17267327 为了证明我的理论呢。拿出了一个非常久之前的项目! 地址:http://blog.csdn.net/ 阅读全文