题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1512 题目大意:有n个猴子,一开始每个猴子只认识自己。每个猴子有一个力量值,力量值越大表示这个猴子打架越厉害。如果2个猴子不认识,他们就会找他们认识的猴子中力量最大的出来单挑,单挑不论输赢,单挑的2个猴 ...
分类:
其他好文 时间:
2016-12-10 22:56:35
阅读次数:
250
1.#include <stdio.h>#include <stdlib.h>#include "BTree.h"/* run this program using the console pauser or add your own getch, system("pause") or input ...
分类:
其他好文 时间:
2016-12-10 19:36:42
阅读次数:
242
1.#include <stdio.h>#include <stdlib.h>#include "SeqStack.h"/* run this program using the console pauser or add your own getch, system("pause") or inp ...
分类:
其他好文 时间:
2016-12-07 13:46:23
阅读次数:
172
Description S国有N个城市,编号从1到N。城市间用N-1条双向道路连接,满足从一个城市出发可以到达其它所有城市。每个城市信仰不同的宗教,如飞天面条神教、隐形独角兽教、绝地教都是常见的信仰。为了方便,我们用不同的正整数代表各种宗教, S国的居民常常旅行。旅行时他们总会走最短路,并且为了避免 ...
分类:
其他好文 时间:
2016-12-06 20:26:12
阅读次数:
213
1. #include <stdio.h>#include <stdlib.h>#include "LinkList.h"/* run this program using the console pauser or add your own getch, system("pause") or in ...
分类:
其他好文 时间:
2016-12-06 14:37:20
阅读次数:
174
题目地址 简要题意: 给若干组数字,每组数据是递增的在0——9之间的数,且每组数的个数不确定。对于每组数,输出由这些数组成的两个数的差的绝对值最小是多少(每个数出现且只出现一次)。 思路分析: 对于n个数,必定为分成两个位数分别为n/2和n-n/2的数时才可能取得差的绝对值最小。两组数分别进行全排列 ...
分类:
其他好文 时间:
2016-12-05 23:21:38
阅读次数:
189
#include<stdio.h>#define N 100void getch(a,n,c,d,g,f,h);void printfc(p,q,n);main(){ char a[N]; char c[N],d[N],g[N],f[N],h[N]; int m, n,i,j; printf("请你 ...
分类:
其他好文 时间:
2016-12-04 20:21:48
阅读次数:
294
#include<stdio.h>main(){p=0;printf("\n 请输入源程序段");do{ch=getchar();prog(p++)=ch; }while(ch!='#');p=0;do{scaner();switch(syn){case 11:printf("\n(%d,%d)", ...
分类:
其他好文 时间:
2016-12-01 13:51:46
阅读次数:
118