在管理软件开发的功能点中,有相当一部分功能是与Excel做数据交互,产生Excel 数据报表。如果Excel报表的数据计算方法很有规律可循,则可以通过自定义公式来解决。比如常见的资产负债表,利润表,取数都非常有规律。 Excel DNA是一套用.NET框架实现的Excel自定义公式引擎,互联网上有很...
分类:
Web程序 时间:
2015-07-09 08:30:52
阅读次数:
156
盐酸吗啉胍片,适应症为用于流感病毒及疱疹病毒感染。适应症用于流感病毒及疱疹病毒感染。药理毒理本品能抑制病毒的DNA和RNA聚合酶,从而抑制病毒繁殖。在人胚肾细胞上,1%浓度对DNA病毒(腺病毒,疱疹病毒)和RNA病毒(埃可病毒)都有明显抑制作用,对病毒增殖周期各个阶段均有抑制作用。对游离病毒颗粒无直...
分类:
其他好文 时间:
2015-07-08 20:29:18
阅读次数:
98
按逆序数从小到大排序。需要稳定排序。然而依然可以快排#include #include #include using namespace std;const int N = 55;const int M = 104;char str[M][N];struct point{ int num, ...
分类:
其他好文 时间:
2015-07-07 22:36:31
阅读次数:
157
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 from C unlimited number of t...
分类:
其他好文 时间:
2015-07-06 21:45:12
阅读次数:
107
android动画之android:interpolator使用Interpolator 被用来修饰动画效果,定义动画的变化率,可以使存在的动画效果accelerated(加速),decelerated(减速),repeated(重复),bounced(弹跳)等。AccelerateDecelera...
分类:
移动开发 时间:
2015-07-05 12:16:23
阅读次数:
163
class Solution:
# @param {string} s
# @return {string[]}
def findRepeatedDnaSequences(self, s):
ans = []
valCnt = dict()
map = {'A' : 0, 'C' : 1, 'G': 2, 'T' : 3}
...
分类:
其他好文 时间:
2015-07-04 15:33:25
阅读次数:
106
The top 100 papersNatureexplores the most-cited research of all time.The discovery of high-temperature superconductors, the determination of DNA’s dou...
分类:
其他好文 时间:
2015-07-02 21:01:13
阅读次数:
98
Given an unsorted array of n integers which can contain integers from 1 to n. Some elements can be repeated multiple times and some other elements can...
分类:
其他好文 时间:
2015-06-26 19:41:52
阅读次数:
127
This link has a great discussion about this problem. You may refer to it if you like. In fact, the idea and code in this passage is from the former li...
分类:
其他好文 时间:
2015-06-25 16:59:52
阅读次数:
122
题目链接:http://poj.org/problem?id=2778题意:有m种DNA序列是有疾病的,问有多少种长度为n的DNA序列不包含任何一种有疾病的DNA序列。(仅含A,T,C,G四个字符)思路:Trie图的状态转移,用矩阵mat[i][j]来表示从结点i到j只走一步有几种走法,那么mat的...
分类:
其他好文 时间:
2015-06-24 22:20:25
阅读次数:
180