506. Relative Ranks 解题思路: 使用priority_queue。它在插入时会将数据按照由大到小的顺序插入,自然排序了。所以插入时考虑插入pair<nums[i],i>,然后根据i填充result。 注意,1) priority_queue没有迭代器,所以要遍历只能通过pop操作 ...
分类:
其他好文 时间:
2017-05-08 10:01:28
阅读次数:
187
很久以前就安装好了Apache(2.2),现在再用时突然出现了问题: 以http://127.0.0.1/exercise/x.php的方式访问文件是正常的,但是要进入phpMyAdmin建表发现不能登录(账号密码是正确的,都记在txt文档上)。网上查了下,都说可能是端口占用(如IIS或迅雷),折腾 ...
分类:
Web程序 时间:
2017-05-03 13:07:02
阅读次数:
212
Exercise 1: 1, Strike while the iron is hot. 2, The chairman introduced the speaker;then he left the hall. 3, We don't necessarily grow wiser as we gr ...
分类:
其他好文 时间:
2017-04-28 15:51:37
阅读次数:
331
要求一:自定义用户信息数据结构,写入文件,然后读出内容,利用eval重新获取数据结构 3 with open('user.db','w') as write_file:#创建并以写入的方式打开一个文件user.db 4 write_file.write(str({ 5 "egon":{"passwo ...
分类:
其他好文 时间:
2017-04-23 10:41:56
阅读次数:
249
/* Experiment to find out what happens when printf's argument string contains \c, where c is some character not listed above. */ #include <stdio.h> ma ...
分类:
其他好文 时间:
2017-04-20 19:56:37
阅读次数:
128
原题: http://exercise.acmcoder.com/online/online_judge_ques?ques_id=4401&konwledgeId=41 时间限制 C/C++语言:1000MS其它语言:3000MS 内存限制 C/C++语言:65536KB其它语言:589824KB ...
分类:
其他好文 时间:
2017-04-08 10:49:25
阅读次数:
269
360笔试题,在赛码网提交后报错“Runtime Error:[ERROR] A Not allowed system call: runid:6660947 callid:25” 题目链接:http://exercise.acmcoder.com/online/online_judge_ques? ...
分类:
Web程序 时间:
2017-03-27 23:52:44
阅读次数:
315
http://exercise.acmcoder.com/online/online_judge_ques?ques_id=3862&konwledgeId=42 ...
分类:
其他好文 时间:
2017-03-19 13:12:56
阅读次数:
144
1)绘制程序的控制流图: B)当n=3时输出的数组中存在2,3,5 当n=5时输出的数组中存在2,3,5,7,11 因此当MAXPRIMES数值为1的时候数组越界错误; C)t=(n=1) D) 点覆盖:{1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16} 边覆盖:{(1 ...
分类:
其他好文 时间:
2017-03-13 12:39:19
阅读次数:
149
在<<c++ primer>>第四版Exercise Section 9.3.4 的Exercise 9.20 是这样的一道题目:编写程序判断一个vector<int> 容器包含的元素是否与list<int> 容器完全相同。测试代码如下: 1 #include "stdafx.h" 2 #inclu ...
分类:
编程语言 时间:
2017-03-07 22:44:01
阅读次数:
227