码迷,mamicode.com
首页 >  
搜索关键字:read    ( 19693个结果
Qt入门之小心read()给你设下的陷阱
最近帮学长写了个Qt Tcpsocket客户端的应用程序,被一个问题困扰了许久.因为以前没有用Qt 写过socket的客户端程序 加上时间比较紧,都没能好好的查看些资料就急忙的写代码,看了一些别人的代码,差不多都是相同的,但是我就出现了收数据 不全的问题.. 最后查出原因是我在接受服务器端的数据时使用了read()这个函数,接收的是个结构体,这里顺便说下怎么在Qt 下收发结构体 发:cli...
分类:其他好文   时间:2014-06-19 11:13:54    阅读次数:342
利用 pacbio 数据组装真菌基因组
最近在做组装稻瘟病的基因组。 估计的基因组大小为40M。 由于没有参考基因组,进行de novo assembly。 用HGAP策略。需要的有用的pacbio数据量应为400M左右, 选用的seed read 最小长度为6K, seed的覆盖度应在20倍左右。拼接流程为:1,filtering. 2...
分类:其他好文   时间:2014-06-16 10:59:10    阅读次数:424
网络编程中的read,write函数
关于TCP/IP协议,建议参考Richard Stevens的《TCP/IP Illustrated,vol1》(TCP/IP详解卷1)。关于第二层面,依然建议RichardStevens的《Unix network proggramming,vol1》(Unix网络编程卷1),这两本书公认是Uni...
分类:其他好文   时间:2014-06-16 09:04:03    阅读次数:170
Count and Say
题目 The count-and-say sequence is the sequence of integers beginning as follows: 1, 11, 21, 1211, 111221, ... 1 is read off as "one 1" or 11. 11 is read off as "two 1s" or 21. 21 i...
分类:其他好文   时间:2014-06-15 18:51:33    阅读次数:220
shell读取文件的每一行
--shell读取文件的每一行-----------------------2014/06/13#!/bin/bashwhile read linedo echo $linedone < filename(待读取的文件)----------------------------------------...
分类:其他好文   时间:2014-06-15 08:42:17    阅读次数:197
Windows Azure Storage (17) Azure Storage读取访问地域冗余(Read Access – Geo Redundant Storage, RA-GRS)
《Windows Azure Platform 系列文章目录》 细心的用户会发现,微软在国外和国内的数据中心建设都是成对的,比如香港数据中心(Asia East)和新加坡的数据中心(South East Asia)。这是因为微软充分考虑了异地冗余的能力。在两对数据中心之间,比如香港和新加坡...
分类:数据库   时间:2014-06-14 19:26:43    阅读次数:270
Leetcode:Count and Say
Description:The count-and-say sequence is the sequence of integers beginning as follows:1, 11, 21, 1211, 111221, ...1is read off as"one 1"or11.11is re...
分类:其他好文   时间:2014-06-14 19:05:13    阅读次数:197
poj3253
#include #include using namespace std; #define read(x) scanf("%lld",&x) int main() { priority_queue,greater >q; long long n,temp,sum; read(n); if(n==1) { read(temp); printf("%lld\n",temp); ...
分类:其他好文   时间:2014-06-14 10:34:12    阅读次数:223
PHP100-第五讲 PHP5.4 的while / for / break / continue、PHP5.4 的系统函数和自定义函数
PHP5.4 的while / for / break / continue、PHP5.4 的系统函数和自定义函数 论坛交流:http://bbs.php100.com/read-htm-tid-150407.html PHP5.4 的while / for / break / continue.....
分类:Web程序   时间:2014-06-12 07:21:25    阅读次数:310
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!