DataMatrixFontandEncoder条形码控件使您能够以字体的形式来打印DataMatrix条形码。本产品可以在任何支持Java类库、.NET动态链接库或WindowsCOM动态链接库的操作系统上使用,并可以使用TrueType、BDF、FON、PCLLaserJetsoftfonts、PostScript(type1)Binary或者PostScriptASCII..
分类:
其他好文 时间:
2014-06-02 14:24:25
阅读次数:
208
下载ASIHTTPRequest框架,解压后,把加到工程中,然后还需要添加一些支持的类库和框架:(TARGETS->Build
Phases->Link Binary With
Libraries)ASIHTTPRequest不支持ARC内存管理,因此如果我们采用了ARC,应该设置一下编译参数"-f...
分类:
其他好文 时间:
2014-06-02 13:37:50
阅读次数:
196
Linux rpm 命令参数使用详解[介绍和应用]RPM是RedHat Package
Manager(RedHat软件包管理工具)类似Windows里面的“添加/删除程序”rpm
执行安装包二进制包(Binary)以及源代码包(Source)两种。二进制包可以直接安装在计算机中,而源代码包将会由R...
分类:
其他好文 时间:
2014-06-02 08:12:05
阅读次数:
356
wget -c http://ftp.gnu.org/gnu/binutils/binutils-2.7.tar.gz
wget -c http://ftp.gnu.org/gnu/gcc/gcc-4.4.2/gcc-4.4.2.tar.bz2
wget -c https://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.33.1.tar.bz2
...
分类:
系统相关 时间:
2014-06-02 05:03:55
阅读次数:
498
正如大家说知道的GCC并不支持"make uninstall". 一种推荐安装方式就是把GCC 安装在你自己指定的一个路径,当你不需要某个GCC版本的时候你只需要移除对应版本即可。
假设你已经有一个老的版本在你的系统中,最简单的范式就是:
1)添加PPA(Personal Package Archive)到里的程序仓库(repositories )里
2更新...
分类:
其他好文 时间:
2014-06-01 15:52:33
阅读次数:
304
【题目】
Given n, how many structurally unique BST's (binary search trees) that store values 1...n?
For example,
Given n = 3, there are a total of 5 unique BST's.
1 3 3 2 1
\ / / / \ 3 2 1 ...
分类:
其他好文 时间:
2014-06-01 15:34:24
阅读次数:
231
【题目】
Given n, generate all structurally unique BST's (binary search trees) that store values 1...n.
For example,
Given n = 3, your program should return all 5 unique BST's shown below.
1 3 3 2 1
\ / / / \ ...
分类:
其他好文 时间:
2014-06-01 15:33:45
阅读次数:
297
【题目】
Given a binary tree, return the inorder traversal of its nodes' values.
For example:
Given binary tree {1,#,2,3},
1
2
/
3
return [1,3,2].
Note: Recursive solution is trivial, could you do it iteratively?
confused what "{1,#,2...
分类:
其他好文 时间:
2014-06-01 13:01:23
阅读次数:
279
【ARM编程模型】硬件: 电路原理图软件:体系结构, 指令集,
寄存器组【ARM编程技术】汇编/C语言编译, 链接, 烧写和调试windows:MDKlinux :gcc【ARM接口编程】电路原理图datasheet
------> 裸机程序(不带操作系统,直接操作硬件)中断技术初始化程序【ARM基...
分类:
其他好文 时间:
2014-06-01 12:28:31
阅读次数:
293
Ubuntu下可以直接安装:sudo apt-get install mingw32
mingw32-binutils
mingw32-runtime安装后编译程序可以:i586-mingw32msvc-g++(编译C++程序)i586-mingw32msvc-gcc(编译C程序)用法和gcc/g+...