
speed
taoqick
这个作者很懒,什么都没留下…
展开
-
poj 1151 Atlantis 二分查找+离散化
AtlantisTime Limit: 1000MS Memory Limit: 10000KTotal Submissions: 17464 Accepted: 6654DescriptionThere are several ancient Greek texts that contain descriptions原创 2014-08-17 16:16:10 · 926 阅读 · 0 评论 -
斐波拉切字符串统计个数 Fibonacci String
Problem: s0 = "a", s1 = "b", s2 = "ba", s3 = "bab", s4 = "babba", s4 = "babbabab", is called Fibonacci string. For the string with index n, given a string str = "bb", calculate how many times in the原创 2014-08-20 11:56:53 · 1062 阅读 · 0 评论 -
Given a tree, find the node with the minimum sum of distances to other nodes
O(n) complexity, have a traversal for the tree. Get the information of all children, then traverse the tree again. #include #include #include #include using namespace std;class Node { pub原创 2014-08-10 12:25:59 · 1080 阅读 · 0 评论 -
C++ 多态 从不同数据源获取数据 多路归并
定义一个基类,用基类的指针分别指向不同的子类。。。#include #include #include #include using namespace std;class ListNode { public: int val; ListNode* next; ListNode(int x) : val(x), next(NULL) { }};原创 2014-08-16 10:07:54 · 1057 阅读 · 0 评论 -
Merge Rectanles
From http://codercareer.blogspot.com/2011/12/no-27-area-of-rectangles.htmlNo. 27 - Area of RectanglesProblem: Please implement a function which gets area of a set of rectangles, whose edg转载 2014-03-22 18:04:05 · 1438 阅读 · 0 评论 -
条件概率-转自维基百科
转载 2014-09-23 14:06:08 · 796 阅读 · 0 评论 -
线段树+离散化 IP地址段检查 SEGMENT TREE
Problem:Give a series of IP segments, for example, [0.0.0.1-0.0.0.3], [123.234.232.21-123.245.21.1]...Now there is a new IP, find which IP segment it's in ?Solution:First, we could map the end原创 2014-08-17 23:32:21 · 1783 阅读 · 0 评论 -
C++ 虚继承 虚基类
#includeusing namespace std;class A { public: char ch[1]; virtual void fun() { }};class B: virtual public A { public: char ch[1]; virtual void fun() { }};class C: virtual publ原创 2014-09-01 13:20:24 · 1083 阅读 · 0 评论 -
将n进制的数组压缩成字符串(0-9 a-z)同时解压
此类题目要明确两点:1. 打表:用数组下标索引字符,同时注意如果从字符对应回数字: int index = (str[i] >= '0' && str[i] 2. 注意低位在前还是高位在前,如果先来的是 低位*radix^i 即可。3. 统计每几个radix进制数组成一位,利用bits来表示。。。这破题主要是麻烦。。。#include #includ原创 2014-08-11 23:57:54 · 1611 阅读 · 0 评论