上一页 1 2 3 4 5 6 7 ··· 33 下一页
摘要: 请实现一个函数,将一个字符串中的空格替换成“%20”。例如,当字符串为We Are Happy.则经过替换之后的字符串为We%20Are%20Happy。http://www.nowcoder.com/practice/4060ac7e3e404ad1a894ef3e17650423?rp=1&ru... 阅读全文
posted @ 2015-10-30 20:49 疯狂的癫子 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 题目描述在一个二维数组中,每一行都按照从左到右递增的顺序排序,每一列都按照从上到下递增的顺序排序。请完成一个函数,输入这样的一个二维数组和一个整数,判断数组中是否含有该整数。 1 class Solution { 2 public: 3 bool Find(vector > array,in... 阅读全文
posted @ 2015-10-30 20:47 疯狂的癫子 阅读(121) 评论(0) 推荐(0) 编辑
摘要: /*已知n个人(以编号1,2,3,。。。n分别表示)围坐在一张圆桌周围。从编号为K的人开始报数,数到m的那个人出列;他的下一个人又从k开始报数,数到m的那个人出列;依次规律重复下去,直到圆桌周围的人全部出列。*///约瑟夫环问题,循环链表#include#include#includeusing ... 阅读全文
posted @ 2015-10-23 19:24 疯狂的癫子 阅读(173) 评论(0) 推荐(0) 编辑
摘要: #include#include#include#includeusing namespace std;typedef struct student{ int data; struct student*next; struct student *pre;}dnode;dnode... 阅读全文
posted @ 2015-10-23 09:14 疯狂的癫子 阅读(164) 评论(0) 推荐(0) 编辑
摘要: //编程实现一个单链表的建立/长度/打印#include#include#include#include#includeusing namespace std;typedef struct student{ int data; struct student *next;}node;no... 阅读全文
posted @ 2015-10-22 21:08 疯狂的癫子 阅读(229) 评论(0) 推荐(0) 编辑
摘要: http://acm.hdu.edu.cn/showproblem.php?pid=2520我是菜鸟,我怕谁Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission... 阅读全文
posted @ 2015-08-26 19:48 疯狂的癫子 阅读(184) 评论(0) 推荐(0) 编辑
摘要: http://acm.hunnu.edu.cn/online/?action=problem&type=show&id=11572&courseid=0题目 C. 酷酷的单词 输入一些仅由小写字母组成的单词。你的任务是统计有多少个单词是“酷”的,即每种字母出现的次数都不同。 比如 ada 是酷的... 阅读全文
posted @ 2015-08-25 20:06 疯狂的癫子 阅读(503) 评论(0) 推荐(0) 编辑
摘要: http://acm.hunnu.edu.cn/online/?action=problem&type=show&id=11574&courseid=0题目 E. 超大型 LED 显示屏 你是学生会体育部长,负责组织一年一度的校篮球比赛。马上就要决赛了,你希望吸引更多的人来看比赛,因此打算更新一下... 阅读全文
posted @ 2015-08-25 20:00 疯狂的癫子 阅读(283) 评论(0) 推荐(0) 编辑
摘要: http://acm.hdu.edu.cn/showproblem.php?pid=5414题意:给定字符串s和t,可以在s里面选一个字符c,然后任选一个字符d(d!=c)将d插入到c的后面,问能不能将s变为t。分析:只要前面t串连续的字符==s字符串,而且保证s是t的子串。本来想不通s:aabaa... 阅读全文
posted @ 2015-08-22 11:08 疯狂的癫子 阅读(290) 评论(0) 推荐(0) 编辑
摘要: (n-1)!/n 就是如果n为素数,就等于n-1else为0。求素数表:Zball in Tina TownTime Limit: 3000/1500 MS (Java/Others) Memory Limit: 262144/262144 K (Java/Others)Total Submissi... 阅读全文
posted @ 2015-08-17 14:39 疯狂的癫子 阅读(133) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 33 下一页