Being unique is so important to people on Mars that even their lottery is designed in a unique way. The rule of winning is simple: one bets on a number chosen from [1, 104]. The first one who bets on ...
分类:
其他好文 时间:
2015-03-05 13:02:13
阅读次数:
126
#include#include#includestruct node{ char data; int next; bool tag;}Node[100066];int main(){ int add1,add2,n; //连表1首地址, scanf("%d%d%d",&...
分类:
其他好文 时间:
2015-03-05 06:47:18
阅读次数:
229
#include#include#include#includeusing namespace std;const int MAX=100010; //int型素数一定在这个范围内int PrimeArr[MAX]; //素数表int cnt=0; //...
分类:
其他好文 时间:
2015-03-05 01:39:52
阅读次数:
154
还是靠书本上的概念,就是如何应对hash时的碰撞情况,有open adressing和chaining,目前接触到的都是chaining。开放地址法在当初学的时候对几种形式也没去太关注,即1. 线性探测(hash(key) + 0, 1, 2, 3...m-1)2. 二次探测(hash(key) +...
分类:
其他好文 时间:
2015-03-04 18:41:18
阅读次数:
127
Zhejiang University has 40000 students and provides 2500 courses. Now given the student name lists of all the courses, you are supposed to output the registered course list for each student who comes ...
分类:
其他好文 时间:
2015-03-04 12:58:12
阅读次数:
177
This time you are asked to tell the difference between the lowest grade of all the male students and the highest grade of all the female students.
Input Specification:
Each input file contains o...
分类:
其他好文 时间:
2015-03-04 09:55:46
阅读次数:
133
The magic shop in Mars is offering some magic coupons. Each coupon has an integer N printed on it, meaning that when you use this coupon with a product, you may get N times the value of that product b...
分类:
其他好文 时间:
2015-03-04 09:54:35
阅读次数:
241
#include#includeusing namespace std;int arr[100066];int FIND(int l,int r,int aim) //二分查找,从l到r,查找aim{ int mid; while(l<=r) { mid=(l+r)/2; i...
分类:
其他好文 时间:
2015-03-04 06:13:57
阅读次数:
169
#include#includeusing namespace std;int arr[100066];int main(){ int n,m; scanf("%d%d",&n,&m); for(int i=0 ; i<n ; ++i) scanf("%d",&arr[i]); sor...
分类:
其他好文 时间:
2015-03-04 06:12:08
阅读次数:
153
其实就是链表求交: 1 #include 2 #include 3 #include 4 #include 5 6 using namespace std; 7 8 class Node { 9 public:10 Node() : data(0), next(0) {}11 ...
分类:
其他好文 时间:
2015-03-04 00:58:56
阅读次数:
129