原题地址想当年初学C++的时候写个大整数加法都快屎了,现在觉得自己还是成长了不少哇。代码: 1 string multiply(string num1, string num2) { 2 int len1 = num1.length(); 3 int len2 = n...
分类:
其他好文 时间:
2015-01-27 07:02:41
阅读次数:
155
课程简介第7天,怎样在SharePoint 2013中创建列表和列表项视频SharePoint 2013 交流群41032413
分类:
其他好文 时间:
2015-01-27 07:01:13
阅读次数:
202
1 from numpy import * 2 import random 3 import time 4 st = time.time() 5 6 def loaddata(filename): 7 fr = open(''.join([filename, '.txt']...
分类:
其他好文 时间:
2015-01-27 07:01:41
阅读次数:
194
原题地址普遍的做法是:用栈保存从根节点到当前尚未遍历过的最小节点的路径(栈顶始终是最小节点)constructor:遍历至最小节点,同时将路径上出现的节点压栈保存hasNext:返回栈里面是否还有元素next:栈顶元素即为所求,弹栈的同时更新栈,使栈里始终保存的是从根节点到剩余未遍历节点的最小节点的...
分类:
其他好文 时间:
2015-01-27 07:00:41
阅读次数:
184
最终效果:代码: 1 2 3 4 5 6 7 8 内容区 9 103 104 105 106 107 108 矢量素材/VECTOR更多>>109 ...
分类:
其他好文 时间:
2015-01-27 06:59:09
阅读次数:
191
课程简介第6天,探索默认的列表和库。视频SharePoint 2013 交流群41032413
分类:
其他好文 时间:
2015-01-27 06:58:41
阅读次数:
241
最近在使用jQuery插件FullCalendar实现一个患者预约医生看病的功能,大致需求如下:
1、 医生首先以周为单位设置自己下个月的出诊时间,包括上班时间,下班时间,每次可预约的时间间隔
2、 患者通过在线预约系统,选择医生的出诊时间并预约
3、 医生可查看自己的预约安排,了解病人的预约情况,使用FullCalendar插件实现效果如下图:
那么现在问题来...
分类:
其他好文 时间:
2015-01-27 01:56:37
阅读次数:
299
3D语音天气球(源码分享)——完结篇。着重介绍了Android和Unity交互并对整个项目进行了总结...
分类:
其他好文 时间:
2015-01-27 01:55:02
阅读次数:
287
io与nio区别:
io是面向流的, nio是面向缓冲区的(速度快)
io是线程阻塞的,nio是线程非阻塞的,所以在nio中一个单独的线程可以处理多个输入和输出通道(channel)的操作
服务端:
selector:
channel_1(key的属性为accept) —— 对应 socket_1
循环遍历key建立与客户端连接
>-返回key
channe...
分类:
其他好文 时间:
2015-01-27 01:56:00
阅读次数:
168
课程简介第5天,在SharePoint 2013中使用垃圾箱视频SharePoint 2013 交流群41032413
分类:
其他好文 时间:
2015-01-27 01:54:05
阅读次数:
220
在用java编程的时候,在debug模式下偶尔会出现下面的错误,jdk1.6.0-rc1:ERROR: JDWP Unable to get JNI 1.2 environment, jvm->GetEnv() return code = -2JDWP exit error AGENT_ERROR_...
分类:
其他好文 时间:
2015-01-27 01:53:05
阅读次数:
233
北京那里买安乐死QQ695256717http://yiqiwan.kuxun.cn/gonglue/795563_444152_new.htmlhttp://yiqiwan.kuxun.cn/gonglue/795563_444152_new.html
分类:
其他好文 时间:
2015-01-27 01:53:12
阅读次数:
107
Because I forgot to install the Chinese input in this OS, I have to use English input.The first problem which I ran into is "how to import the local f...
分类:
其他好文 时间:
2015-01-27 01:53:30
阅读次数:
149
Given a binary tree, return the postorder traversal of its nodes' values. For example:Given binary tree {1,#,2,3}, 1 \ 2 / 3return [3,2,...
分类:
其他好文 时间:
2015-01-27 01:51:12
阅读次数:
198
3.1 渐近记号存在的几种性质:传递性自反性:f(n)=K(f(n)) ---K代表θ,O,Ω三种情况对称性:f(n)=θ(g(n)) ---当且仅当g(n)=θ(f(n))转置对称性:f(n)=O(g(n)) ---当且仅当g(n)=Ω(f(n))----------练习---------3.1-...
分类:
其他好文 时间:
2015-01-27 01:52:02
阅读次数:
226
传送门http://www.lydsy.com/JudgeOnline/problem.php?id=1876二进制gcd 学到了(' ' ) 高精还得压位,最开始没写压位,然后调了1h后又重写了一遍(' ' ) 怨念深重#include #include #include #include...
分类:
其他好文 时间:
2015-01-27 01:51:51
阅读次数:
188