题目:All DNA is composed of a series of nucleotides abbreviated as A, C, G, and T, for example: "ACGAATTCCG". When studying DNA, it is sometimes useful ...
分类:
其他好文 时间:
2015-05-04 08:38:25
阅读次数:
117
Combination Sum
Given a set of candidate numbers (C) and a target number (T), find all unique combinations in C where
the candidate numbers sums to T.
The same repeated number may be chosen ...
分类:
其他好文 时间:
2015-05-03 23:45:39
阅读次数:
142
百度了很多的资料都没有明白qsort 中 cmp 的用处,用Bing 一搜就搜到一篇自认为比其他都解析清楚的文章直接贴出来算了comparPointer to a function that compares two elements.This function is called repeated...
分类:
其他好文 时间:
2015-05-01 07:01:56
阅读次数:
129
传送门:Repeated Substrings题意:给定一个字符串,求至少重复一次的不同子串个数。分析:模拟写出子符串后缀并排好序可以发现,每次出现新的重复子串个数都是由现在的height值减去前一个height值。#include #include #include #include #inclu...
分类:
编程语言 时间:
2015-04-27 12:58:48
阅读次数:
174
题目链接:https://leetcode.com/problems/repeated-dna-sequences/
All DNA is composed of a series of nucleotides abbreviated as A, C, G, and T, for example: "ACGAATTCCG". When studying DNA, it is someti...
分类:
其他好文 时间:
2015-04-27 09:58:50
阅读次数:
110
All DNA is composed of a series of nucleotides abbreviated as A, C, G, and T, for example: "ACGAATTCCG". When studying DNA, it is sometimes useful to ...
分类:
其他好文 时间:
2015-04-21 00:25:31
阅读次数:
138
最近在做一个基于Netty框架的项目。
该项目使用了Google的Protobuf作为编解码的框架。(没有使用XML或者json是为了更好的提高效率)。
经过了一段时间的使用我对Protobuf的原始文件进行一个简单的使用方法总结。
我主要在这里说明一下,原始文件.proto中,修饰符repeated、required、optional的区别。
0.windows环境,java工程
1....
分类:
编程语言 时间:
2015-04-20 15:08:27
阅读次数:
216
早上到公司第一件事变成了刷leetcode,发现各种题目的各种解法,真心是个挺有趣的过程。比如今天早上碰到的这个DNA序列的问题,一开始完全没有头绪,但是后来看了些文章发现,真的是二进制大法好啊!会了二进制,走遍天下都不怕啊。原题如下:
All DNA is composed of a series of nucleotides abbreviated as A, C, G,
and T,...
分类:
其他好文 时间:
2015-04-20 13:14:15
阅读次数:
159
1 class Solution { 2 private: 3 char tbl[256]; 4 public: 5 vector findRepeatedDnaSequences(string s) { 6 vector res; 7 8 ...
分类:
其他好文 时间:
2015-04-19 22:46:06
阅读次数:
224
NAME uniq - report or omit repeated linesSYNOPSIS uniq [OPTION]... [INPUT [OUTPUT]]DESCRIPTION Filter adjacent matching lines from I...
分类:
其他好文 时间:
2015-04-16 19:07:07
阅读次数:
138