刚刚看到两句话,感觉不错,分享给大家:
1.用户的问题,就是我们的问题
2.做一些用户想要的东西
(define add1
(lambda (x)
(+ 1 x)))
(define sub1
(lambda (x)
(- x 1)))
(add1 67)
(sub1 5)
(sub1 0)
(zero? 22)
(defi...
分类:
其他好文 时间:
2015-06-26 00:31:15
阅读次数:
171
题目:Implement regular expression matching with support for '.' and '*'.'.' Matches any single character.'*' Matches zero or more of the preceding eleme...
分类:
其他好文 时间:
2015-06-24 22:29:30
阅读次数:
174
Regular Expression Matching
Implement regular expression matching with support for '.' and '*'.
'.' Matches any single character.
'*' Matches zero or more of the preceding element.
The match...
分类:
其他好文 时间:
2015-06-24 21:08:10
阅读次数:
133
题目链接:http://codeforces.com/problemset/problem/535/A#include
#include
using namespace std;int main()
{
string s1[10]={"zero","one","two","three","four","five","six","seven","eigh...
分类:
其他好文 时间:
2015-06-24 16:34:49
阅读次数:
111
1. ASCII
返回与指定的字符对应的十进制数;
SQL> select ascii(A) A,ascii(a) a,ascii(0) zero,ascii( ) space from dual;
A A ZERO SPACE
--------- --------- --------- ---------
65 97 48 32
2. CHR
给出整数,返回对应的字符;
SQ...
分类:
数据库 时间:
2015-06-23 10:15:20
阅读次数:
240
private void SelectTab() { IntPtr hand1 = FindWindowA(null, "EPSON R330 Series 打印首选项"); if (hand1 != IntPtr.Zero...
分类:
其他好文 时间:
2015-06-23 10:02:18
阅读次数:
88
当使用了ngx_zeromq模块在nginx中,使用以下命令进行编译安装:
./configure --with-debug --add-module=./zeromq_module/ngx_zeromq/ --with-http_ssl_module
开启一个zero_mq的ZMQ_REP模式的服务端程序,那么在web中输入http://127.0.0.1/时,返回502页面,再查看...
分类:
其他好文 时间:
2015-06-23 00:53:08
阅读次数:
445
#include // The type of a pointer into the init table.typedef void const * table_ptr_t;// The type of an initialization routine. It takes a pointer to...
分类:
其他好文 时间:
2015-06-22 19:15:50
阅读次数:
2029
题目链接:https://leetcode.com/problems/regular-expression-matching/
Implement regular expression matching with support for '.' and '*'.
'.' Matches any single character.
'*' Matches zero or more...
分类:
其他好文 时间:
2015-06-21 18:38:10
阅读次数:
215
1. dd命令简述: if=输入文件, of=输出文件, ibs=一次读取字节数, obs=一次写入字节数, bs=设置一次读取写入的字节数, skip=跳过的bs数, count=拷贝的块数2. 使用/dev/null和/dev/zero 1. 把/dev/null看作"黑洞", 它等价于一个.....
分类:
其他好文 时间:
2015-06-19 18:24:23
阅读次数:
161