Problem
Link:http://oj.leetcode.com/problems/word-ladder/Two typical techniques are
inspected in this problem:Hash Table. One hash set is the words di...
分类:
其他好文 时间:
2014-05-05 22:44:44
阅读次数:
393
什么也不说了,直接贴上代码吧,哈哈 Bootstrap-Template-01 Hello,
world! 哪下面我就来说说几个要点吧【1】Boo...
分类:
其他好文 时间:
2014-05-05 22:26:34
阅读次数:
291
以下说明均以心恬科技的XT-106控制卡作为硬件基础设备。与LED显示屏通讯,第一步是建立连接(我们称之为Hello)。网络通讯协议方式为UDP,可以自己定义UDP数据包结构,也可以利用系统提供的Socket工具来访问LED显示屏。准备好硬件(显示屏配置成功)之后就可以试图通过代码来与显示屏建立连接...
分类:
其他好文 时间:
2014-05-05 21:56:42
阅读次数:
686
文章地址:http://blog.csdn.net/piggyxp/article/details/6922277附件如下:word文档PiggyIOCPServer_2008.rarPiggyStressTestClient.rar
分类:
编程语言 时间:
2014-05-04 12:36:18
阅读次数:
359
首先看下面这个例子
public static void main(String[] args) {
ArrayList al1 = new ArrayList();
al1.add(1);
ArrayList al2 = new ArrayList();
al2.add("hello");
//int型链表和string型链表,结果为true
System.out.p...
分类:
编程语言 时间:
2014-05-03 22:02:53
阅读次数:
376
You are given a string, S, and a list of words, L, that are all of the same length. Find all starting indices of substring(s) in S that is a concatenation of each word in L exactly once and without an...
分类:
其他好文 时间:
2014-05-03 21:35:49
阅读次数:
310
2dx3.0下JSON解析库官方已经集成好了,我们引用就OK。
JSON文件hello.json内容
{"pets":["dog","cat"],"stuInfo":{"stuAge":"23","stuName":"zhangsan","birthday":"1990-01-12"},"username":"tomsfff","other":[true,30]}
.h头文件...
分类:
Web程序 时间:
2014-05-03 21:34:48
阅读次数:
319
#!/bin/bash
clear
declare FirstName Greeting
Greeting="Hello ,"
echo ""
echo "Enter Your First Name:"
read FirstName
echo "$ Greeting $FirstName"
首先 vim Print 回车
然后 i 进入插入状态
编辑以上代码,Esc 键...
分类:
其他好文 时间:
2014-05-03 21:05:20
阅读次数:
283