创建表 插入数据 \c代表此行作废 查案表结构 查看表结构有两种方式: describe [tablename];这种方法和desc [tablename];效果相同;可以查看当前的表结构 虽然desc命令可以查看表的定义,但是其输出的信息还不够全面,为了得到更全面的表定义信息,有时候就需要查看创建 ...
分类:
数据库 时间:
2018-10-08 22:14:11
阅读次数:
228
当联动选择时,如第一个 checkbox or picklist选择后,自动筛选第二个对应的联动选项,如下两种方法(未实测): 二: ...
分类:
其他好文 时间:
2018-10-08 18:06:34
阅读次数:
226
10.1 Procedural and object oriented programming ) In procedural programming, you first concentrate on the procedures you will follow ) In OOP, you con ...
分类:
其他好文 时间:
2018-10-07 12:08:43
阅读次数:
110
题目描述 输入某二叉树的前序遍历和中序遍历的结果,请重建出该二叉树。假设输入的前序遍历和中序遍历的结果中都不含重复的数字。例如输入前序遍历序列{1,2,4,7,3,5,6,8}和中序遍历序列{4,7,2,1,5,3,8,6},则重建二叉树并返回。 解题思路 用递归思想 前序遍历是{1,2,4,7,3 ...
分类:
编程语言 时间:
2018-10-06 20:39:55
阅读次数:
197
DEFINITION Data transfer object (DTO) describes “an object that carries data between processes” (Wikipedia) or an “object that is used to encapsulate ...
分类:
其他好文 时间:
2018-10-06 13:20:14
阅读次数:
123
(有任何问题欢迎留言或私聊 && 欢迎交流讨论哦 Catalog [TOC] Problem: Portal: "hdu4126" "hdu4756" 原题目描述在最下面。 第一题: 给定一张n(3000)个点的图,q次询问,每次询问增大一条边的权值后最小生成树的 ...
分类:
其他好文 时间:
2018-10-05 21:07:24
阅读次数:
181
描述 The city executive board in Lund wants to construct a sightseeing tour by bus in Lund, so that tourists can see every corner of the beautiful city. ...
分类:
其他好文 时间:
2018-10-04 23:54:32
阅读次数:
216
题目描述 一只青蛙一次可以跳上1级台阶,也可以跳上2级……它也可以跳上n级。求该青蛙跳上一个n级的台阶总共有多少种跳法。 分析:一次可以跳多个,则上一步可以为第 n-1,n-2,n-3.......3,2,1.0; 所以第n个台阶的可能性为前n - 1个台阶的和+1。(+1是从第0个台阶直接一步到位 ...
分类:
编程语言 时间:
2018-10-01 14:34:27
阅读次数:
184
Merge k sorted linked lists and return it as one sorted list. Analyze and describe its complexity. Example: Input: [ 1 4 5, 1 3 4, 2 6 ] Output: 1 1 2 ...
分类:
其他好文 时间:
2018-09-29 13:12:09
阅读次数:
141
描述 Merge k sorted linked lists and return it as one sorted list. Analyze and describe its complexity. Example: 思路 借鉴Merge Two Sorted Lists的解决思路,对两个数组先 ...
分类:
编程语言 时间:
2018-09-28 15:23:37
阅读次数:
142