The Chef likes to stay in touch with his staff. So, the Chef, the head server, and the sous-chef all carry two-way transceivers so they can stay in constant contact. Of course, these transceivers have...
分类:
其他好文 时间:
2014-05-10 09:11:21
阅读次数:
334
2014年5月5日
10:33:47原因:文件乱码了,乱码后以减号开头,删不掉摘抄:文件系统出现一个文件-C.html如何删除/新建?rm--"-C.html"touch---demo.sh可以创建我的测试:如果文件名字是乱码,则可以用tab键补全复制:
cp -- "-old.html" new....
分类:
系统相关 时间:
2014-05-09 17:07:49
阅读次数:
629
我们先写一个简单的脚本,执行以后再解释各个变量的意义# touch variable# vi
variable脚本内容如下:#!/bin/shecho "number:$#"echo "scname:$0"echo "first :$1"echo
"second:$2"echo "argume:$@...
分类:
系统相关 时间:
2014-05-08 21:16:46
阅读次数:
480
转自:http://blog.csdn.net/jymn_chen/article/details/21036035首先科普一下静态库的相关知识:程序编译一般需经预处理、编译、汇编和链接几个步骤。对于我们项目中的一些公共代码,如果想要对其进行复用,可以把这些代码编译成一个静态库文件。在链接步骤中,链...
分类:
其他好文 时间:
2014-05-08 21:13:34
阅读次数:
488
Attacking rooks
在一个n*n的图中,‘X’代表卒,在‘.’的地方放置尽量多的车,使得它们不互相攻击。问最多可放置车的数目。
和Fire Net一样,但这里图是100*100的,搜索会超时(其实我还脑残的试了试).
正解是二分图匹配,将每行中连续为.的作为X集合中一个点,同样,将每列中连续为.的点作为Y集合中的一个点。对原图中每个'.',将其对应的X集合和Y集合...
分类:
其他好文 时间:
2014-05-07 21:46:28
阅读次数:
340
- (BOOL)gestureRecognizer:(UIGestureRecognizer
*)gestureRecognizer shouldReceiveTouch:(UITouch *)touch{ // 获取点击的view的类名
NSLog(@"%@", NSStringFromCla.....
分类:
其他好文 时间:
2014-05-07 20:25:47
阅读次数:
404
Web
image(网络图像)该库提供了一个支持来自Web的远程图像的UIImageView类别它提供了:添加网络图像和缓存管理到Cocoa Touch
framework的UIImageView类别异步图像下载An asynchronous memory + disk image caching ...
分类:
移动开发 时间:
2014-05-07 13:45:00
阅读次数:
627
Problem B: Fire!Joe works in a maze. Unfortunately,
portions of the maze have caught on fire, and the owner of the maze neglected to
create a fire esc...
分类:
其他好文 时间:
2014-05-07 13:28:07
阅读次数:
312
第三章文件一.文件的建立,移动和删除1.cat--建立文件eg1:cat创建新文件newfile1cat>newfile1或是cat->newfile1eg2:对已存在的文件newfile1追加新内容lovecat>>newfile1或catnewfile12.touch--建立文件-r:由参考文件的时间属性来设定新建的文件eg:新建两个文件ab..
分类:
系统相关 时间:
2014-05-06 16:06:38
阅读次数:
510
项目中用到了地图相关的东西,就把以前的demo搬了出来,结果发现直接运行之前的demo没有问题,在xcode5下新建项目再把代码粘贴过来就会提示
May 5 11:36:21 infomedia-iPod-touch TestLocation[1465] : CGBitmapContextCreate: unsupported parameter combination: 5 integer ...
分类:
移动开发 时间:
2014-05-06 15:17:46
阅读次数:
769