简介主要实现实验室设备的联机管理和信息传输以及发布,其联机共享范围小到单机版,大到医院之间或区域互联,都可以任意选择,按需升级。主要特点打报告不用输入姓名,报告处理轻松、高效、无差错检查项目自动传入仪器,省去控制台编程的麻烦功能强大的条码管理,实现样本采集、传输、传递、分拣、上机的电脑化管理,正确高...
分类:
其他好文 时间:
2015-05-03 00:43:09
阅读次数:
203
1. O(n^2)
传统的求解方法 ,思路为dp,状态转移方程为 dp[i]=max( dp[j]+1,1)
即到目前的i为止,对前面出现的a[j](ja[j]的情况 ,就使用状态转移方程。
转移方程代表了两种可能 ,第一种为第i个元素自己成为一个上升的队列 ,或者是由于前面的a[j]
dp[j]的基础之上形成了dp[i] = dp[j]+1 但前提是a[i]>a[j]
# in...
分类:
其他好文 时间:
2015-05-02 18:13:32
阅读次数:
138
Revenge of LIS II
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 1195 Accepted Submission(s): 400
Problem Description
In computer s...
分类:
其他好文 时间:
2015-05-02 09:46:20
阅读次数:
117
winform做圆角窗体: 1 //重绘窗体为圆角 2 private void frmMain_Paint(object sender, PaintEventArgs e) 3 { 4 #region 5 6 Lis...
题目传送门 1 /* 2 最长递增子序列O(nlogn)算法: 3 设当前最长递增子序列为len,考虑元素a[i]; 4 若d[len] 8 #include 9 #include 10 #include 11 #include 12 #include ...
分类:
其他好文 时间:
2015-04-29 21:33:33
阅读次数:
121
Wavio Sequence
Input: Standard Input
Output: Standard Output
Time Limit: 2 Seconds
Wavio is a sequence of integers. It has some interesting properties.
· Wavio is of odd length i.e. L =...
分类:
其他好文 时间:
2015-04-29 10:09:39
阅读次数:
120
1 def select_from_list_by_label(self, locator, *labels): 2 """Selects `*labels` from list identified by `locator` 3 4 Select lis...
分类:
其他好文 时间:
2015-04-29 00:33:24
阅读次数:
128
1 def select_from_list_by_value(self, locator, *values): 2 """Selects `*values` from list identified by `locator` 3 4 Select lis...
分类:
其他好文 时间:
2015-04-29 00:26:34
阅读次数:
303
题目链接:count-primes
Description:
Count the number of prime numbers less than a non-negative number, n
public class Solution {
public int countPrimes(int n) {
if(n <= 2) return 0;
Lis...
分类:
其他好文 时间:
2015-04-28 23:02:38
阅读次数:
225
今天调试程序遇到下面一个错误:
unexpected end of file found in comment
#include"List.h"
void InitList(List *list)
{
Node *s = (Node *)malloc(sizeof(Node));
assert(s != NULL);
s->next = NULL;
list->first = lis...
分类:
其他好文 时间:
2015-04-28 21:02:31
阅读次数:
154