摘要: http://acm.sdut.edu.cn/sdutoj/problem.php?action=showproblem&problemid=1476View Code 1 #include<iostream> 2 using namespace std ; 3 int main() 4 { 5 int a[10005]; 6 int n, i ; 7 while(cin>>n) 8 { 9 int sum = 0 ;10 for(i=0; i<n; i++)11 cin>>a[i] ;12 fo... 阅读全文
posted @ 2013-02-22 20:29 yelan@yelan 阅读(128) 评论(0) 推荐(0) 编辑
摘要: http://acm.hdu.edu.cn/showproblem.php?pid=1228View Code 1 #include <iostream> 2 using namespace std; 3 string strnum[10]={"zero","one","two","three","four","five","six","seven","eight","nine"}; 阅读全文
posted @ 2013-02-22 19:50 yelan@yelan 阅读(136) 评论(0) 推荐(0) 编辑
摘要: http://www.cskaoyan.com/thread-45695-1-1.html留给自己,激励自己 阅读全文
posted @ 2013-02-22 19:05 yelan@yelan 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 题目要求及测试数据图片: 题目要求: 输入n,m,n表示该图有n个顶点,m表示该图有m条边。 输出与每个顶点所关联的点。 (数据范围暂时忽略,要求用今天讲的三中存储结构分别来做)View Code 1 //邻接矩阵 2 #include<stdio.h> 3 #include<string.h> 4 int map[10][10] ; 5 void init() 6 { 7 memset(map, 0, sizeof(map)) ; 8 } 9 int main() 10 { 11 int n, m, i, j, u, v, w ; 12 init... 阅读全文
posted @ 2013-02-22 16:01 yelan@yelan 阅读(155) 评论(0) 推荐(0) 编辑
摘要: http://acm.hdu.edu.cn/showproblem.php?pid=1305同上题一样,判断一个串是不是另一个串的子串,用的是模拟二叉树View Code 1 #include<stdio.h> 2 struct trie 3 { 4 int num; 5 trie *child[2]; 6 trie() 7 { 8 for(int i=0;i<2;i++) child[i]=0; 9 num=0;10 }11 } *root;12 int flag;13 void Insert(char *x)14 {... 阅读全文
posted @ 2013-02-22 15:41 yelan@yelan 阅读(249) 评论(0) 推荐(0) 编辑