上一页 1 ··· 87 88 89 90 91 92 93 94 95 ··· 106 下一页
摘要: In graph theory, an Eulerian path is a path in a graph which visits every edge exactly once. Similarly, an Eulerian circuit is an Eulerian path which 阅读全文
posted @ 2018-10-09 11:39 lypbendlf 阅读(224) 评论(0) 推荐(0)
摘要: 《Python编程:从入门到实践》读书笔记 1.读取文件并且对文件内容进行打印有三种方式: 1)读取之后使用for循环遍历文件对象 进行打印 2)直接读取文件对象打印。 3)将文件内容存到列表里,在with代码块外打印。(需要遍历列表,rstrip方法是字符串的,不是列表的。) 2.将内容写入到文件 阅读全文
posted @ 2018-10-06 21:46 lypbendlf 阅读(215) 评论(0) 推荐(0)
摘要: 来自:中国大学mooc-山东大学 生物信息学 课程 1.什么是序列? 序列就是字符串。 s就是一个序列。(原来序列是这么简单的,听着太高大上了) 蛋白质序列:由20个不同的字母(氨基酸)排列组合而成。 核酸序列:由4个不同的字母(碱基,ATCGU)排列组合而成,包括DNA序列和RNA序列。 FAST 阅读全文
posted @ 2018-10-05 22:58 lypbendlf 阅读(4668) 评论(0) 推荐(1)
摘要: 1.基因分析 --Using standard microbiome reference groups to simplify beta-diversity analyses and facilitate independent validation --Grouper: graph-based c 阅读全文
posted @ 2018-10-05 20:30 lypbendlf 阅读(163) 评论(0) 推荐(0)
摘要: Given a stack which can keep M numbers at most. Push N numbers in the order of 1, 2, 3, ..., N and pop randomly. You are supposed to tell if a given s 阅读全文
posted @ 2018-09-25 22:25 lypbendlf 阅读(138) 评论(0) 推荐(0)
摘要: 转自:https://blog.csdn.net/qq_33406883/article/details/52653406 本题要求实现一个函数,将两个链表表示的递增整数序列合并为一个非递减的整数序列。 函数接口定义: List Merge( List L1, List L2 ); 其中List结构 阅读全文
posted @ 2018-09-25 21:20 lypbendlf 阅读(456) 评论(0) 推荐(0)
摘要: 1.单引号和双引号 结果: 也就是可以看出,双引号会解析 转义字符和变量,而单引号不会。 2.字符串(Here文档) 输出: 1.$a用来定义标量, 2.在定义字符串时,要使用一个EOF或者其他任何样式的字母,并且加上<<,最后一行结束时还要有同样的字串作为结束,并且如果是双引号,就会解析其中的变量 阅读全文
posted @ 2018-09-25 17:14 lypbendlf 阅读(165) 评论(0) 推荐(0)
摘要: 以下均来自百度百科 1.什么是基因组? 基因组是指细胞内所有的遗传信息,以核苷酸序列形式存储,细胞或者生物体中,一套完整单体的遗传物质的总和即为基因组。 基因是DNA分子上具有遗传效应的特定核苷酸序列的总称,即具有遗传效应的DNA分子片段。人类基因组由 30亿个碱基对组成。 真核生物基因组较大,每个 阅读全文
posted @ 2018-09-25 15:54 lypbendlf 阅读(2327) 评论(0) 推荐(0)
摘要: 来自:生物信息学-陈铭第二版的一个例题。 题目: 目前的代码,运行不正确,关键就是不知道怎么回溯啊,回溯怎么标记呢? #include <iostream> #include<vector> using namespace std; vector<char> s1,t1;//在回溯的时候使用 str 阅读全文
posted @ 2018-09-24 09:35 lypbendlf 阅读(228) 评论(0) 推荐(0)
摘要: One important factor to identify acute stroke (急性脑卒中) is the volume of the stroke core. Given the results of image analysis in which the core regions 阅读全文
posted @ 2018-09-23 16:45 lypbendlf 阅读(255) 评论(0) 推荐(0)
上一页 1 ··· 87 88 89 90 91 92 93 94 95 ··· 106 下一页