码迷,mamicode.com
首页 >  
搜索关键字:target    ( 24275个结果
Rotate Image
问题:矩阵顺时针旋转90度class Solution {public: bool dfs(vector > &matrix,int target,int n) { if(n==matrix.size()) return false; if(matrix[n]...
分类:其他好文   时间:2014-08-06 22:21:42    阅读次数:222
Search a 2D Matrix
问题:二维数组中是否存在一个数class Solution {public: bool dfs(vector > &matrix,int target,int n) { if(n==matrix.size()) return false; if(matrix[...
分类:其他好文   时间:2014-08-06 22:17:52    阅读次数:243
openwrt 编译软件包出现错误(is missing dependencies for the following libraries: libpthread.so.0)
install -m0755 /home/yanfa/workspace/trunk-wr703/build_dir/target-mips_r2_uClibc-0.9.33.2/lk_cnp_serial_eth/lk_cnp_serial_eth /home/yanfa/workspace/tr...
分类:Windows程序   时间:2014-08-06 22:12:22    阅读次数:2659
Java annotation浅析
自定义annotation@Documented@Retention(RetentionPolicy.RUNTIME)@Target({ElementType.FIELD,ElementType.METHOD,ElementType.TYPE})public @interface TestAnnot...
分类:编程语言   时间:2014-08-06 22:02:52    阅读次数:308
Search in Rotated Sorted Array
问题:找出某个元素的位置朴素的暴力方法class Solution {public: int search(int A[], int n, int target) { int i; for(i=0;i<n;i++) { if(A[...
分类:其他好文   时间:2014-08-06 21:45:42    阅读次数:196
makefile一个模板
INCLUDE+=-I./Include -I/usr/local/include/libxml2 -I/usr/local/ssl/include -I/usr/local/include TARGET=Agent LIB=-lstdc++ -lrt -lpthread -lxml2 OBJS:=...
分类:其他好文   时间:2014-08-06 17:47:21    阅读次数:190
Target-Action设计模式
含义:当某个事件发生时,调用某个对象的某个方法一般情况下,对象就是target,方法就是actiontarget是controller,action是action使用方法:1,创建按钮2,在controller.h文件中声明action3,在controller.m文件中实现action3,给but...
分类:其他好文   时间:2014-08-06 17:16:31    阅读次数:183
LINUX防火墙firewall、iptables
(1) 重启后永久性生效:开启: systemctl enable iptables.service'.ln -s '/usr/lib/systemd/system/iptables.service' '/etc/systemd/system/basic.target.wants/iptables....
分类:系统相关   时间:2014-08-06 08:23:21    阅读次数:863
terminal generate ipa
1) cd xx.xcodeproject 2) xcodebuild –list 3) xcodebuild –target $TARGET –sdk iphoneos –configuration Release 4) xcrun -sdk iphoneos PackageApplication...
分类:其他好文   时间:2014-08-06 08:22:51    阅读次数:277
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!