Palindrome
Time Limit: 3000MS
Memory Limit: 65536K
Total Submissions: 53647
Accepted: 18522
Description
A palindrome is a symmetrical string, that is, a string read ide...
分类:
其他好文 时间:
2014-11-01 17:50:47
阅读次数:
179
XML\YAML文件在OpenCV中的数据结构为FileStorage string filename = "I.xml";
FileStorage fs(filename, FileStorage::WRITE);
\\...
fs.open(filename, FileStorage::READ...
分类:
其他好文 时间:
2014-10-31 22:06:31
阅读次数:
393
相比前些天的内容,今天的内容算是比较简单的。主要说了VT控制 码,三种排序算法:选择排序,冒泡排序,快速排序。二分查找。遍历二叉树还有posix的简单介绍。系统调用函数:open close read write lseek fstat的使用。 关于vt控制码的学习,据老刘说是为了以后的小项...
分类:
其他好文 时间:
2014-10-31 20:36:14
阅读次数:
232
linux 共享内存shm_open实现进程间大数据交互read.c #include #include #include #include #include #include #include #include /*int shm_open(const char *name, int oflag,...
分类:
系统相关 时间:
2014-10-31 11:32:08
阅读次数:
396
说明:将视频cars3.avi变成一些类的帧图像,并保存为jpg格式的。obj=mmreader('cars3.avi');vidFrames=read(obj);numFrames=get(obj,'numberOfFrames');for k=1:numFrames path='F:\cars....
分类:
其他好文 时间:
2014-10-30 22:15:53
阅读次数:
192
fitbit <- read.csv("fitbit.csv") date cal step dist floor sit inactive walk run1 2014年1月1日 2496 12803 9.14 15 1161 123 98 ...
分类:
编程语言 时间:
2014-10-30 22:13:10
阅读次数:
323
在linux中查看或监控磁盘的读写性能,可以用到iostat命令,本节介绍下其具体用法。 1. 硬盘读写性能 #查看TPS和吞吐量信息
iostat -d -k 1 10
Device: tps kB_read/s kB_wrtn/s kB_re...
分类:
移动开发 时间:
2014-10-30 17:25:52
阅读次数:
178
read和write
#include
ssize_t read(int fd, void *buf, size_t count);
ssize_t write(int fd, const void *buf, size_t count);
参数:
fd: 文件描述符
buf:数据缓冲区,用于保存要从fd读取或写入的数据
count:输入/写入的数据最大字节数。(实际读取或...
分类:
其他好文 时间:
2014-10-30 13:33:52
阅读次数:
238
HELLO! BOOT0 is starting! boot0 version : 2.0.0 ? ? ? ? ? ? ? ? ? ? ? read dram para. dram driver version: 1.15 dram size =1024MB 0x7b7afe7f super_standby_flag = 0 Succeed in opening nan...
分类:
编程语言 时间:
2014-10-30 12:02:02
阅读次数:
400
__author__ = 'Administrator'
import codecs def blocks(file, size=65536): while True: b = file.read(size) if not b: break yield b with codecs. open('h:...
分类:
编程语言 时间:
2014-10-30 10:54:09
阅读次数:
166