1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 int main() 7 { 8 stack s; 9 s.push(1);10 s.push(2);11 s.pus...
分类:
其他好文 时间:
2015-08-30 19:28:34
阅读次数:
204
1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 using namespace std; 8 9 map a;10 map m;11 12 int main()13 {14 int n...
分类:
其他好文 时间:
2015-08-30 19:28:11
阅读次数:
145
There is a very simple idea to keep a max heap of size k and elements in the heap are sorted by their absolute difference from target. For the max hea...
分类:
其他好文 时间:
2015-08-30 19:28:25
阅读次数:
246
描述: Suppose there are M people, including you, playing a special card game. At the beginning, each player receives N cards. The pip of a card is a po....
分类:
其他好文 时间:
2015-08-30 19:27:16
阅读次数:
234
转自http://blog.sina.com.cn/s/blog_4a9f789a0100ik3p.html一.获得控制台用户输入的信息public String getInputMessage() throws IOException...{ System.out.println("请输入您...
分类:
编程语言 时间:
2015-08-30 19:27:17
阅读次数:
203
Hidden StringAccepts: 437Submissions: 2174Time Limit: 2000/1000 MS (Java/Others)Memory Limit: 262144/262144 K (Java/Others)Problem DescriptionToday is...
分类:
其他好文 时间:
2015-08-30 19:27:19
阅读次数:
215
Distribution moneyAccepts: 713Submissions: 1881Time Limit: 2000/1000 MS (Java/Others)Memory Limit: 65536/65536 K (Java/Others)Problem DescriptionAFA w...
分类:
其他好文 时间:
2015-08-30 19:28:48
阅读次数:
150
1、安装 官网下载:https://www.python.org/ 请选择2.X版本2、从命令提示符打开python 直接输入python点enter即可 查看python版本输入python -V win10下打开命令提示符:win+x然后按a,其中win+x是系统快捷菜单,右键点击wi...
分类:
编程语言 时间:
2015-08-30 19:27:18
阅读次数:
603
1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 7 int main() 8 { 9 vectoredg[1005];10 int n;11 int u,v;12 i...
分类:
其他好文 时间:
2015-08-30 19:27:03
阅读次数:
184
DescriptionLet's play a card game called Gap. You have 28 cards labeled with two-digit numbers. The first digit (from 1 to 4) represents the suit of t...
分类:
其他好文 时间:
2015-08-30 19:28:00
阅读次数:
163
转自: http://blog.csdn.net/cywosp/article/details/23397179 一致性哈希算法在1997年由麻省理工学院提出的一种分布式哈希(DHT)实现算法,设计目标是为了解决因特网中的热点(Hot spot)问题,初衷和CARP十分类似。一致性哈希修正了CARP...
分类:
编程语言 时间:
2015-08-30 19:26:33
阅读次数:
171
1 #include 2 #include 3 #include 4 using namespace std; 5 6 int main() 7 { 8 int n,z; 9 int i,j,k;10 int a[1005];11 scanf("%d",&n...
分类:
其他好文 时间:
2015-08-30 19:25:41
阅读次数:
149
算法效率的度量是通过时间复杂度和空间复杂度来描述的。 一.时间复杂度 —个语句的频度是指该语句在算法中被重复执行的次数。算法中所有语句的频度之和记作T(n),它是该算法问题规模n的函数,时间复杂度主要分析T(n)的数量级。算法中的基本运算(最深层循环内的语句)的频度与T(n)同数量级,所以通常采...
分类:
编程语言 时间:
2015-08-30 19:25:14
阅读次数:
174
this对象是指向函数的运行环境。函数被当做某个对象的方法调用时this等于那个对象。var name = 'window';var obj = { name:'obj', sayName:function(){ console.log(this.name); ...
分类:
编程语言 时间:
2015-08-30 19:27:22
阅读次数:
140
iOS学习(UI)知识点整理一、自定义标签栏1)方法一 单个创建标签栏 1 #import "AppDelegate.h" 2 #import "SecondViewController.h" 3 #import "ViewController.h" 4 #import "ThirdViewCon....
分类:
移动开发 时间:
2015-08-30 19:26:34
阅读次数:
239
Python获取程序运行目录和脚本目录importosimportsys#获取脚本所在目录printos.path.split(os.path.realpath(sys.argv[0]))[0]#获取脚本运行目录printos.getcwd()在脚本所在目录运行: python test.py/ho...
分类:
编程语言 时间:
2015-08-30 19:27:14
阅读次数:
181
前些时间一直在忙着写代码,当然其实也没那么忙,只是因为自己的任性——很容易的就因为一些事情搞得没心情干活导致效率低下,自己才能整理之前的记录和在这里码子写文。然而想将自己的笔记整理成博文时,却发现一个很大的问题,就是缺乏连贯性。我写博文本来就是闹着玩和为自己做记录,逼自己把零碎的笔记条理化,然而毕竟...
分类:
其他好文 时间:
2015-08-30 19:27:13
阅读次数:
161