摘要:
create table #simple /*仅仅对当前用户有效。其它用户无法使用,断掉连接后马上销毁该表*/ ( id int not null ) select * from #simple create table ##simple /*对不论什么前用户有效。断掉连接后马上销毁该表*/ ( i 阅读全文
posted @ 2017-06-16 16:45
cxchanpin
阅读(148)
评论(0)
推荐(0)
摘要:
Note: This is an extension of House Robber. After robbing those houses on that street, the thief has found himself a new place for his thievery so tha 阅读全文
posted @ 2017-06-16 15:34
cxchanpin
阅读(167)
评论(0)
推荐(0)
摘要:
解决问题有两个作用: 1、不用打开App直接进入某页面 2、实现App分享到外部,同一时候由外部进入App的闭环。 这个话题能够分双方面来讲。一方面是从微信进入App,还有一方面是从网页进入App。 咱们拿http://my.oschina.net/liucundong/blog/354029当样例 阅读全文
posted @ 2017-06-16 14:44
cxchanpin
阅读(266)
评论(0)
推荐(0)
摘要:
http://acm.hdu.edu.cn/showproblem.php?pid=1032 这题能够用暴力求解。求出在[ni,nj]之间全部数字产生的最大值。 通过观察能够知道,当nk靠近nj的时候,产生的值越多,于是,我认为能够在暴力的基础上做一些小的变化。降低对ni,nj中值得考查 #incl 阅读全文
posted @ 2017-06-16 13:18
cxchanpin
阅读(181)
评论(1)
推荐(0)
摘要:
单元測试的目的 首先。Junit单元測试要实现的功能,就是用来測试写好的方法是否可以正确的运行,一般多用于对业务方法的測试。 单元測试的环境配置 1.在AndroidManifest清单文件的Application节点下。引入单元測试使用的库 2.在AndroidManifest清单文件与Appli 阅读全文
posted @ 2017-06-16 11:48
cxchanpin
阅读(227)
评论(0)
推荐(0)
摘要:
string t = ""; //总体下载 IEnumerator downfile(string url, string LocalPath,UILabel DesLable) { Uri u = new Uri(url); HttpWebRequest mRequest = (HttpWebRe 阅读全文
posted @ 2017-06-16 10:58
cxchanpin
阅读(458)
评论(0)
推荐(0)
摘要:
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> <script src="Script/raphael.js"></script> </head> <body> <div id="p 阅读全文
posted @ 2017-06-16 09:41
cxchanpin
阅读(374)
评论(0)
推荐(0)
摘要:
问题描写叙述 试编写在带头结点的单链表L中删除一个最小值结点的高效算法(如果最小值结点是唯一的) 算法思想 在链表中删除最小值的前提是必须找到最小值元素是哪个结点,因此设置指针p对全部结点进行遍历,使用指针min指向最小值结点。可是由于涉及到删除操作,明显在仅仅有指针min和指针p的条件下删除操作是 阅读全文
posted @ 2017-06-16 08:11
cxchanpin
阅读(501)
评论(0)
推荐(0)