Problem DescriptionYour task is to calculate the sum of some integers.InputInput contains an integer N in the first line, and then N lines follow. Eac...
分类:
其他好文 时间:
2014-12-05 20:59:08
阅读次数:
212
Problem DescriptionYour task is to calculate the sum of some integers.InputInput contains an integer N in the first line, and then N lines follow. Eac...
分类:
其他好文 时间:
2014-12-05 20:58:18
阅读次数:
147
1.char*类型的隐式转化成bool类型void a(bool input){ cout<<"I amd first"<<endl; cout<<input<<endl;}void a(const string &input){ cout<<"I amd second"<<end...
分类:
其他好文 时间:
2014-12-05 20:57:11
阅读次数:
119
//SeqStack.h
/*
stack:Last In First Out
*/
//1.定义顺序栈的结构
typedef struct stack
{
DATA data[SIZE+1];
int top; //栈顶
}SeqStack;
//2.初始化栈
SeqStack *SeqStackInit()
{
SeqStack *p;
if(p=(SeqStack *...
分类:
编程语言 时间:
2014-12-05 19:24:13
阅读次数:
186
Given inorder and postorder traversal of a tree, construct the binary tree.
Note:
You may assume that duplicates do not exist in the tree.
基本思想和知道前序与中序的思想一样,中序的某一节点的左节点一定是该节点的左子树,而后序遍历的某一节点的左节点一定...
分类:
其他好文 时间:
2014-12-05 17:36:45
阅读次数:
116
Given an array where elements are sorted in ascending order, convert it to a height balanced BST.
深搜+递归
/**
* Definition for binary tree
* public class TreeNode {
* int val;
* Tree...
分类:
其他好文 时间:
2014-12-05 17:34:59
阅读次数:
169
1 文件--新建--项目 控制台应用程序,填写信息,确定:2 在解决方案管理器中,选中AmyConsoleApp,添加新项,选择ADO.NET 实体数据模型,添加:3 在选择模型内容中选择“从数据库生成”,下一步。4 在选择您的数据连接中,选择一个可以连接的数据库,命名实体连接为SampleEnti...
分类:
其他好文 时间:
2014-12-05 14:11:54
阅读次数:
183
1. 深度优先搜索介绍图的深度优先搜索(Depth First Search),和树的先序遍历比较类似。它的思想:假设初始状态是图中所有顶点均未被访问,则从某个顶点v出发,首先访问该顶点,然后依次从它的各个未被访问的邻接点出发深度优先搜索遍历图,直至图中所有和v有路径相通的顶点都被访问到。 若此时尚...
分类:
其他好文 时间:
2014-12-05 12:34:04
阅读次数:
311
首先说first-child与last-child,这两个选择器很容易明白,就是父元素下的第一个子元素和最后一个子元素。而nth-child和nth-last-child则是父元素下指定序号的子元素,甚至第偶数个、奇数个子元素精选样式的制定。/*选择器写法示例*/nth-child(n) //正数第...
分类:
Web程序 时间:
2014-12-05 12:26:19
阅读次数:
178