\先把furthur的超碉线段树粘过来 1 //#pragma comment(linker, "/STACK:102400000,102400000") 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include...
分类:
其他好文 时间:
2014-11-21 15:39:26
阅读次数:
227
用动态链接的方法:arm-linux-gcc hello.c -o hello.out -Wl,-dynamic-linker=/system/lib/ld-linux.so.3并且拷贝文件到安卓系统目录下/system/lib/ld-linux.so.3
分类:
移动开发 时间:
2014-11-21 12:08:35
阅读次数:
187
今天练了一波DP。时间紧迫我就只贴代码了。20141120fzu2129http://acm.fzu.edu.cn/problem.php?pid=2129不同的子序列个数 1 //#pragma comment(linker, "/STACK:102400000,102400000") 2 #.....
分类:
其他好文 时间:
2014-11-20 21:40:18
阅读次数:
320
使用第三方静态库的时候有时候要求在编译选项linker 中 other linker flag中加入 -ObjC但如果自制的framework库工程中加入了-ObjC,在Demo工程中如果也加入-ObjC选项时,可能导致duplicate sysbol的问题duplicate symbol _OBJ...
分类:
移动开发 时间:
2014-11-20 00:01:40
阅读次数:
463
类似的问题还有: why can't class template use Handle Class Pattern to hide its implementation? || why there are linker problems (undefined reference) to my cl...
分类:
编程语言 时间:
2014-11-19 20:18:49
阅读次数:
526
题目链接:点击打开链接
给定n个点m条限制
下面限制 u->v
表示u必须排在v前面,问把n个数排成一排有多少种方法。
若有0种输出0
1种输出1
多种输出2
**边的数量题目里少了个0==
思路:
0种就是有环,缩点一下判断强连通分量是不是n个。
1种就是拓扑序时队列里任何时刻都只有一个点
否则就是2种
#pragma comment(linker, "/STAC...
分类:
其他好文 时间:
2014-11-15 18:55:56
阅读次数:
124
//#pragma comment(linker, "/STACK:102400000,102400000") c++扩栈/* int __size__ = 256 '9')) c = getchar(); sgn = (c == '-') ? -1 : 1; ret = (c =...
分类:
其他好文 时间:
2014-11-15 16:44:16
阅读次数:
206
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#pragma comment(linker, "/STACK:1024000000");
#define EPS (1e-6)
#define LL long long
#de...
分类:
其他好文 时间:
2014-11-13 20:55:14
阅读次数:
136
题意:
#pragma comment(linker, "/STACK:1024000000,1024000000")
#include
#include
#include
#include
template
inline bool rd(T &ret) {
char c; int sgn;
if (c = getchar(), c == EOF) return 0...
分类:
其他好文 时间:
2014-11-09 15:19:46
阅读次数:
242
因为项目需求需要根据用户的信息生成二维码,二维码SDK主流(ZXing)(ZBar),我选择的是(ZBar),但是在添加过程中出现了这样的问题:"_OBJC_CLASS_$_xx文件名", referenced from:linker command failed with exit code 1 ...
分类:
移动开发 时间:
2014-11-06 19:57:02
阅读次数:
215