Trees are fundamental in many branches of computer science (Pun definitely intended). Current stateof-the art parallel computers such as Thinking Mach ...
分类:
其他好文 时间:
2017-08-23 15:04:49
阅读次数:
260
题目链接:http://www.spoj.com/problems/CZ_PROB1/ 题目大意:Sp2 是所有素数中能够被分解为两个数的平方和的素数的集合。P(a,b)指的是在a的划分中,最大元素不超过b的划分的个数(就是那个经典整数划分动态规划题)。给你个n,k,问P(sp2[n],k)是多少。 ...
分类:
其他好文 时间:
2017-08-21 15:46:26
阅读次数:
195
传送门 Description The Hamming distance between two integers is the number of positions at which the corresponding bits are different. Now your job is to ...
分类:
其他好文 时间:
2017-08-20 18:27:04
阅读次数:
124
关于链表的题, 画图看看需要那几个节点, 一般都是接头节点(用作标记) 和遍历节点, 遍历的时候要判空, head.next != null 前一定要判head != null, 将尾节点置为空! ...
分类:
其他好文 时间:
2017-08-19 17:14:39
阅读次数:
212
描述: Given a linked list, swap every two adjacent nodes and return its head. For example,Given 1->2->3->4, you should return the list as 2->1->4->3. Yo ...
分类:
其他好文 时间:
2017-08-19 15:47:59
阅读次数:
146
题目描述:两句话发人深思啊。。。。 Given an array of 2n integers, your task is to group these integers into n pairs of integer, say (a1, b1), (a2, b2), ..., (an, bn) w ...
分类:
编程语言 时间:
2017-08-19 10:55:20
阅读次数:
156
Travel The country frog lives in has nn towns which are conveniently numbered by 1,2,…,n1,2,…,n. Among n(n?1)2n(n?1)2 pairs of towns, mm of them are c ...
分类:
其他好文 时间:
2017-08-18 23:52:37
阅读次数:
209
1.问题产生的原因是,在一个循环里对table中的元素先进行置空操作,再进行增加新元素的操作,就会报这个错误。 2.比如下面的例子:(当中间的函数足够复杂并进行封装了的情况下,不会留意到存在这个问题) 以上,完。 ...
分类:
其他好文 时间:
2017-08-14 21:26:17
阅读次数:
350
http://poj.org/problem?id=2891 Time Limit: 1000MS Memory Limit: 131072K Total Submissions: 16849 Accepted: 5630 http://poj.org/problem?id=2891 Descrip ...
分类:
其他好文 时间:
2017-08-13 13:23:56
阅读次数:
137
目录 核心类 ConnectionMultiplexer 字符串(String) 哈希(Hash) 列表(List) 有序集合(sorted set) Key 操作 发布订阅 其他 简介 目前 .NET 使用访问 Redis 的的类库主流应该是 StackExchange.redis,自己参考网上的 ...
分类:
其他好文 时间:
2017-08-11 10:51:21
阅读次数:
799