摘要:
LeetCode - Two Sum2013.12.1 02:30Given an array of integers, find two numbers such that they add up to a specific target number.The function twoSum should return indices of the two numbers such that they add up to the target, where index1 must be less than index2. Please note that your returned answ 阅读全文
摘要:
剑指Offer - 九度1523 - 从上往下打印二叉树2013-12-01 00:35题目描述:从上往下打印出二叉树的每个节点,同层节点从左至右打印。输入:输入可能包含多个测试样例,输入以EOF结束。对于每个测试案例,输入的第一行一个整数n(1 4 #include 5 using namespace std; 6 7 int main() 8 { 9 const int MAXN = 1005;10 queue qq;11 int i;12 int n;13 int x, y;14 int r;15 int a[MAXN][3];... 阅读全文
摘要:
剑指Offer - 九度1522 - 包含min函数的栈2013-12-01 23:44题目描述:定义栈的数据结构,请在该类型中实现一个能够得到栈最小元素的min函数。输入:输入可能包含多个测试样例,输入以EOF结束。对于每个测试案例,输入的第一行为一个整数n(1 4 #include 5 using namespace std; 6 7 int main() 8 { 9 int n;10 int i;11 int tmp;12 vector st, min_st;13 char s[10];14 15 while(scanf("%d... 阅读全文