软件介绍: ColorSchemer Studio 2 is a professional color matching application for anyone from hobbyists to advanced professionals. Work with a dynamic visu ...
分类:
其他好文 时间:
2017-04-23 16:54:02
阅读次数:
162
题目 Implement wildcard pattern matching with support for '?' and '*'. '?' Matches any single character. '*' Matches any sequence of characters (includi ...
分类:
其他好文 时间:
2017-04-23 13:23:54
阅读次数:
170
makefile中的函数 所以得makefile函数都是有返回值的 src=$(wildcard ./*.c) #从当前目录查找所有的.c文件obj=$(patsubst ./%.o, ./%.c, $(src)) #所有.c替换成点o .PHONY:clean 伪目标clean:rm $(obj) ...
分类:
其他好文 时间:
2017-04-22 18:47:12
阅读次数:
177
题目 Implement regular expression matching with support for '.' and '*'. '.' Matches any single character. '*' Matches zero or more of the preceding ele ...
分类:
其他好文 时间:
2017-04-22 09:27:07
阅读次数:
144
Makefile中wildcard的介绍 在Makefile规则中,通配符会被自动展开。但在变量的定义和函数引用时,通配符将失效。这种情况下如果需要通配符有效,就需要使用函数“wildcard”,它的用法是:$(wildcard PATTERN...) 。在Makefile中,它被展开为已经存在的、 ...
分类:
其他好文 时间:
2017-04-20 19:35:29
阅读次数:
132
同步容器类包括vector和Hashtable。此外还包括jdk1.2中添加的一些功能相似的类,这些同步封装器是由Collections.synchronizedXxx等工厂方法创建的。这些类实现线程...
分类:
编程语言 时间:
2017-04-20 10:54:29
阅读次数:
248
1、编译成android时。须要改动jni/android.mk,每一个cpp都改动一下太麻烦,能够让他自己主动识别。 # 遍历文件夹及子文件夹的函数 define walk $(wildcard $(1)) $(foreach e, $(wildcard $(1)/*), $(call walk, ...
分类:
其他好文 时间:
2017-04-18 14:18:36
阅读次数:
145
Algorithm.( Augmenting Path Algorithm ) Input: An X-Y bigraph G, a matching M in G, and the set U of M-unsaturated vertices in X. Idea: Explore M-alte ...
分类:
编程语言 时间:
2017-04-15 19:23:18
阅读次数:
271
找了半天终于找到,可以通过命令行直接拿到主目录 ...
分类:
编程语言 时间:
2017-04-13 09:03:16
阅读次数:
177
Leetcode 44 实现一种类似正则表达式的字符串匹配功能。 复杂度要求不高, 调代码稍微费点劲。。 好像跟贪心也不太沾边, 总之 *把待匹配串分成若干个子串, 每一个子串尽量在模式串中靠前的部分匹配完成就算贪心了吧。。 ...
分类:
其他好文 时间:
2017-04-12 04:25:55
阅读次数:
175