摘要: 在中国找到钱不难,但你的一个点子不意味着是一个创业。你谈一个再好的想法,比方我今天谈一个创意说,新浪为什么不收购GOOGLE呢?这个创意非常好。新浪一收购GOOGLE。是不是新浪就变成老大了?你从哪儿弄来钱?怎么去整合GOOGLE呢; 之前写过有关于Android 插件方向的文章,解析了一下Andr 阅读全文
posted @ 2017-06-16 21:59 cxchanpin 阅读(432) 评论(0) 推荐(0)
摘要: union的作用非常easy用来合并两条sql的结果集 语法: SQL1 UNION SQL2 现有一张价格表 要求:求出价格低于2000和价格高于3000的商品。不能用or和not between……and 思路:我们能够先求出低于2000的商品得到结果集1 再求出高于3000的商品得到结果集2 阅读全文
posted @ 2017-06-16 20:30 cxchanpin 阅读(251) 评论(0) 推荐(0)
摘要: SICP 习题 2.11又出现Ben这个人了,如曾经说到的,仅仅要是Ben说的一般都是对的。来看看Ben说什么。他说:“通过监測区间的端点,有可能将mul-interval分解为9中情况,每种情况中所须要的乘法都不超过两次”。所以这个叫Ben的人建议Allysa重写mul-interval过程。究竟 阅读全文
posted @ 2017-06-16 19:25 cxchanpin 阅读(812) 评论(0) 推荐(0)
摘要: <html> <head> <meta charset="UTF-8"/> <title>贪吃蛇</title> </head> <body> <canvas id="canvas" width="1000" height="700"></canvas> <div> <input id="switc 阅读全文
posted @ 2017-06-16 18:04 cxchanpin 阅读(7482) 评论(0) 推荐(0)
摘要: 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 阅读(267) 评论(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 阅读(228) 评论(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 阅读(376) 评论(0) 推荐(0)
摘要: 问题描写叙述 试编写在带头结点的单链表L中删除一个最小值结点的高效算法(如果最小值结点是唯一的) 算法思想 在链表中删除最小值的前提是必须找到最小值元素是哪个结点,因此设置指针p对全部结点进行遍历,使用指针min指向最小值结点。可是由于涉及到删除操作,明显在仅仅有指针min和指针p的条件下删除操作是 阅读全文
posted @ 2017-06-16 08:11 cxchanpin 阅读(501) 评论(0) 推荐(0)