码迷,mamicode.com
首页 >  
搜索关键字:priate strand    ( 27个结果
归并排序
归并排序是利用"归并"技术来进行排序。归并是指将若干个已排序的子文件合并成一个有序的文件。常见的归并排序有两路归并排序(Merge Sort),多相归并排序(Polyphase Merge Sort),Strand排序(Strand Sort)。下面介绍第一种: (一)两路归并排序 最差时间复杂度: ...
分类:编程语言   时间:2017-06-01 11:17:34    阅读次数:254
java基础知识总结(1)
定义类: 访问修饰符 class 类名{ } 访问修饰符如:public 、priate是可选的 class是声明类的关键字 按照命名规范,类名首字母大写 例:创建“人”类,关键代码: public class Person{ } ********************************** ...
分类:编程语言   时间:2016-09-24 00:39:03    阅读次数:267
网络库crash以及boost asio strand dispath分析
最近在做服务器的稳定性的相关测试,服务器的网络底层使用的是boost asio,然后自己做的二次封装以更好的满足需求。 服务器昨天晚上发现crash了一次,之前测试了将近半个多月,有一次是莫名的退出了,不过由于是新的测试服,忘记将ulimit -c进行修改了,所以没有coredump,这次又发生了。 ...
分类:其他好文   时间:2016-07-07 19:50:27    阅读次数:338
利用基因ID去gtf文件中查找基因相应的位置及正反义链并提取相应的序列
#!/usr/bin/env pythondef splic_seq_2(fa,r_id_,g_id_,position_1,position_2,strand): import sys import Anti_# sequence_file= open(options.fasta_seq) seq...
分类:其他好文   时间:2015-05-04 21:44:50    阅读次数:637
boost库asio详解1——strand与io_service区别
namespace{//strand提供串行执行,能够保证线程安全,同时被post或dispatch的方法,不会被并发的执行.//io_service不能保证线程安全boost::asio::io_servicem_service;boost::asio::strandm_strand(m_serv...
分类:其他好文   时间:2015-04-28 01:50:26    阅读次数:2077
Timer.5 - Synchronising handlers in multithreaded programs
This tutorial demonstrates the use of the boost::asio::strand class to synchronise callback handlers in a multithreaded program.The previous four tuto...
分类:其他好文   时间:2015-04-28 01:38:34    阅读次数:168
HBV(2.1)_嗜肝DNA病毒
单词:polymerase聚合酶['p?l?m?re?z; p?'l?m?re?z]an enzyme that catalyzes(催化) the formation of new DNA and RNA from an existing strand of DNA or RNAcovalentl...
分类:其他好文   时间:2015-03-22 10:31:19    阅读次数:298
HBV(14)_核苷酸药物治疗
单词:polymerase聚合酶['p?l?m?re?z; p?'l?m?re?z]an enzyme that catalyzes(催化) the formation of new DNA and RNA from an existing strand of DNA or RN目录1.拉米夫定 (...
分类:其他好文   时间:2015-03-16 12:32:43    阅读次数:170
HBV(2)_基因
单词:polymerase聚合酶['p?l?m?re?z; p?'l?m?re?z]an enzyme that catalyzes(催化) the formation of new DNA and RNA from an existing strand of DNA or RNAcovalentl...
分类:其他好文   时间:2015-03-14 12:19:58    阅读次数:214
Oracle中IMU技术和redo private strand技术
oracle030 oracle030 Oracle中IMU技术和redo private strand技术 3、图解Oracle IMU机制      select * from v$sysstat where name like '%IMU%'; STATISTIC#, NAME,       CLASS, ...
分类:数据库   时间:2015-02-24 10:19:46    阅读次数:357
27条   上一页 1 2 3 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!