上一页 1 ··· 88 89 90 91 92 93 94 95 96 ··· 107 下一页
摘要: 来自:生物信息学-陈铭第二版的一个例题。 题目: 目前的代码,运行不正确,关键就是不知道怎么回溯啊,回溯怎么标记呢? #include <iostream> #include<vector> using namespace std; vector<char> s1,t1;//在回溯的时候使用 str 阅读全文
posted @ 2018-09-24 09:35 lypbendlf 阅读(222) 评论(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 阅读(249) 评论(0) 推荐(0) 编辑
摘要: Given a collection of number segments, you are supposed to recover the smallest number from them. For example, given { 32, 321, 3214, 0229, 87 }, we c 阅读全文
posted @ 2018-09-23 11:40 lypbendlf 阅读(123) 评论(0) 推荐(0) 编辑
摘要: The task of this problem is simple: insert a sequence of distinct positive integers into a hash table, and output the positions of the input numbers. 阅读全文
posted @ 2018-09-22 12:13 lypbendlf 阅读(396) 评论(0) 推荐(0) 编辑
摘要: The "Hamilton cycle problem" is to find a simple cycle that contains every vertex in a graph. Such a cycle is called a "Hamiltonian cycle". In this pr 阅读全文
posted @ 2018-09-22 11:13 lypbendlf 阅读(187) 评论(0) 推荐(0) 编辑
摘要: The lowest common ancestor (LCA) of two nodes U and V in a tree is the deepest node that has both U and V as descendants. Given any two nodes in a bin 阅读全文
posted @ 2018-09-20 22:58 lypbendlf 阅读(275) 评论(0) 推荐(0) 编辑
摘要: Werewolf(狼人杀) is a game in which the players are partitioned into two parties: the werewolves and the human beings. Suppose that in a game, player #1 阅读全文
posted @ 2018-09-20 20:57 lypbendlf 阅读(496) 评论(0) 推荐(0) 编辑
摘要: 转自:https://blog.csdn.net/Together_CZ/article/details/74906427 1.面试7:使用两个栈实现一个队列。 //猛一看有点晕,实际上很简单。 使用两个栈,一个是保存输入S1,另一个是输出S2; 当有新元素插入到队尾时,就将元素放入S1中; 当要删 阅读全文
posted @ 2018-09-16 12:46 lypbendlf 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 转自:https://blog.csdn.net/csdn_chai/article/details/78002202 1.什么是操作系统? OS是用户与硬件之间的接口,管理计算机的软件和硬件资源。 2.计算机的硬件包括:CPU、输入输出设备、存储器、总线等。 3.什么是进程?什么是线程? 进程是资 阅读全文
posted @ 2018-09-15 18:31 lypbendlf 阅读(415) 评论(0) 推荐(0) 编辑
摘要: 软件工程可以分开来看 软件:设计实现一个软件,工程:是一个项目、有团队有规划的过程。 1.软件有生命周期 软件定义阶段: 软件定义(问题定义、可行性研究、需求分析)问题定义:明白要解决的问题是什么可行性研究:探索这个问题是否值得去解,是否有可行的解决办法. //可行性研究:在较高的抽象层次上对系统进 阅读全文
posted @ 2018-09-13 21:56 lypbendlf 阅读(137) 评论(0) 推荐(0) 编辑
上一页 1 ··· 88 89 90 91 92 93 94 95 96 ··· 107 下一页