http://www.cnblogs.com/lhb25/archive/2013/04/02/50-jquery-plugins-d.htmlresponsive-carousel
是一个内容传送带插件,支持鼠标、触摸和键盘操作。默认包含 slide/drag 过渡特效,你也通过 data 属性应...
分类:
Web程序 时间:
2014-05-26 01:50:38
阅读次数:
496
combobox 的 datasource一般是查询存储过程得到 ,但在测试或演示时,也可以自己定义
, 方法是 : DataTable customerTable = new DataTable(); customerTable.Columns.Add(...
分类:
其他好文 时间:
2014-05-26 01:35:34
阅读次数:
184
里氏代换原则(Liskov Substitution Principle,
LSP)1什么是里氏代换原则 里氏代换原则是由麻省理工学院(MIT)计算机科学实验室的Liskov女士,在1987年的OOPSLA大会上发表的一篇文章《Data
Abstraction and Hierarchy》里面提出来...
分类:
其他好文 时间:
2014-05-26 01:26:05
阅读次数:
379
using System;using System.Collections.Generic;using
System.ComponentModel;using System.Data;using System.Drawing;using
System.Linq;using System.Text;u...
分类:
其他好文 时间:
2014-05-26 00:40:38
阅读次数:
214
form1.cs using System;using
System.Collections.Generic;using System.ComponentModel;using System.Data;using
System.Drawing;using System.Text;using Syst...
分类:
其他好文 时间:
2014-05-26 00:25:36
阅读次数:
336
:-(,好久没写博客了,原因也很多,就不赘述了。直接开始翻译今天下午阅读的文章:如何阅读论文。之所以写这个,因为我看完之后感觉有点启发,自己之前阅读论文确实存在这个问题。先给出链接:http://blizzard.cs.uwaterloo.ca/keshav/home/Papers/data/07/...
分类:
其他好文 时间:
2014-05-26 00:13:25
阅读次数:
304
??
// //广度优先遍历二叉树
// //从一个顶点开始,识别所有可到达顶点
// //的方法叫作广(宽)度优先搜索,这种
// //搜索可使用队列来实现
typedef struct binarytree
{
EleType data;
struct binarytree *LeftChild;
struct binarytree *RightChild...
分类:
其他好文 时间:
2014-05-25 18:25:35
阅读次数:
316
1.链队列结构
typedef struct QNode /* 结点结构 */
{
QElemType data;
struct QNode *next;
}QNode,*QueuePtr;
typedef struct /* 队列的链表结构 */
{
QueuePtr front,rear; /* 队头、队尾指针 */
}LinkQueue;...
分类:
编程语言 时间:
2014-05-25 10:25:15
阅读次数:
325
gunzip -r hongchangfirst/data
如何递归删除那些剩余的非log结尾的文件?
先列出确认一下:
find hongchangfirst/data -type f ! -name "*.log"
然后真正的删除:
find hongchangfirst/data -type f ! -name "*.log" -exec rm -f {} \;...
分类:
系统相关 时间:
2014-05-25 09:41:05
阅读次数:
694
1. 循环队列的顺序存储结构
typedef struct
{
QElemType data[MAXSIZE];
int front; /* 头指针 */
int rear; /* 尾指针,若队列不空,指向队列尾元素的下一个位置 */
}SqQueue;
2. 初始化一个空队列Q
Status InitQueue(SqQueue *Q)
{
Q->fr...
分类:
编程语言 时间:
2014-05-25 04:43:05
阅读次数:
407