多窗口打开多个文件vim -o file1 file2 ... ---- 默认上下分割窗口vim -0n file1 file2 ... ---- vim默认会上下等分n个窗口分割窗口:[v]split file ---- 以横向分割(带v)或纵向分割当前窗口打开文件(等比分割):[n][v]spl...
题目:Sort a linked list using insertion sort.代码: 1 /** 2 * Definition for singly-linked list. 3 * struct ListNode { 4 * int val; 5 * ListNod...
分类:
其他好文 时间:
2014-09-24 01:57:35
阅读次数:
227
Implement to tab with web parts in Sharepoint 2013I
mplement a feature about tabbed content with multiple web parts, each associated with a header in a list. I will achieve it in SharePoint 2013.
to...
分类:
Web程序 时间:
2014-09-23 16:56:35
阅读次数:
389
题目:
Given a linked list, determine if it has a cycle in it.
Follow up:
Can you solve it without using extra space?
这是一道关于链表比较简单的题,很顺利就解决了,不多说啦,上代码啦
# Definition for singly-linked list.
# ...
分类:
其他好文 时间:
2014-09-22 22:07:03
阅读次数:
233
An architecture for an extended multiprocessor (XMP) computer system is provided. The XMP computer system includes multiple SMP nodes. Each SMP node i...
分类:
其他好文 时间:
2014-09-22 20:22:43
阅读次数:
234
实际上是指的是一个名为pie的htc文件,即pie.htc,使用CSS的behavior行为,可以调用此文件,然后让IE也能实现一些常见的 CSS3效果,如圆角(border-radius),盒阴影(box-shadow),背景渐变(gradient),多图片背景(multiple backgrou...
分类:
其他好文 时间:
2014-09-22 19:15:33
阅读次数:
229
SQL(Structured Query Language)结构化查询语言,是一种高度非过程化的语言,其灵活易用完成核心操作仅需要9个动词,对有一点编程基础的人来说很容易上手。在我们做过的机房收费系统中主要用它来创建数据库并完成系统和数据库的交互。
基本功能:
数据定义(Data Definition):建立数据库和表的结构
数据管理(Data Management)...
分类:
数据库 时间:
2014-09-22 00:28:11
阅读次数:
228
Given a linked list, return the node where the cycle begins. If there is no cycle, return null.
Follow up:
Can you solve it without using extra space?
/**
* Definition for singly-linked list.
...
分类:
其他好文 时间:
2014-09-21 18:31:21
阅读次数:
233
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
struct ListNode
{
int val;
ListNode *ne...
分类:
其他好文 时间:
2014-09-20 15:36:29
阅读次数:
152
Chapter 10 UINavigationController1. When your application presents multiple screens of information, a UINavigationController maintains a stack of thos...
分类:
其他好文 时间:
2014-09-19 19:06:15
阅读次数:
130