1 class XingDemo { 2 public static void main(String[] args) { 3 int j = 0; 4 int i = 0; 5 int k = 0; 6 for(i = 0;...
分类:
编程语言 时间:
2015-09-10 15:54:14
阅读次数:
139
工程中使用boost库:(设定vs2010环境)在Library files加上 D:\boost\boost_1_46_0\bin\vc10\lib在Include files加上 D:\boost\boost_1_46_0 1 // boostTest.cpp : 定义控制台应用程序的入口点。 ...
分类:
其他好文 时间:
2015-09-10 15:54:42
阅读次数:
208
/* 成员变量的作用范围: @public:在任何地方都能直接访问对象的成员变量 @private:只能在当前类的对象方法中直接访问,如果子类要访问需要调用父类的get/set方法 @protected:可以在当前类及其子类对象方法中直接访问(系统默认下是用它来修饰的) @package:...
分类:
其他好文 时间:
2015-09-10 15:51:53
阅读次数:
134
数据库中共含如下字段内容小区名称,省份,城市,区县,街道,地址,联系电话,纬度,经度全国百度小区楼盘数据量50万条样本下载:http://pan.baidu.com/s/1dDtg3xZ联系方式:网页:http://www.cnblogs.com/psteam/博客:http://blog.sina...
分类:
其他好文 时间:
2015-09-10 15:53:38
阅读次数:
405
问题:之前用idea14.1.3导入maven项目后,maven的dependencies不能自动解决依赖,到处都是红色的红线,看着就受不了。虽然不影响命令行编译,但是看着实在是不爽。总结下面几小步:一、导入maven项目 1) 2) 然后下一步下一步默认设置完成导入,这个时候可以右击...
分类:
Web程序 时间:
2015-09-10 15:53:00
阅读次数:
147
http://acm.hdu.edu.cn/showproblem.php?pid=4472第一个本能的找规律。第二直觉 树被分成的子树,然后,复发或DP然后发现不。然后,他们发现,他们并没有阅读题,。。,dp[i]=segma(dp[j] | (i-1)%j==0)#include #includ...
分类:
其他好文 时间:
2015-09-10 15:51:10
阅读次数:
125
课程来自斯坦福大学吴恩达教授 machine learning:https://www.coursera.org/learn/machine-learning/home/welcome1) Model representation(模型表示)回到第一课中的房屋价格预测问题, 首先它是一个有监督学习的...
分类:
其他好文 时间:
2015-09-10 15:51:16
阅读次数:
332
Service是android四大组件之一,没有用户界面,一直在后台运行。为什么使用Service启动新线程执行耗时任务,而不直接在Activity中启动一个子线程处理?1、Activity会被用户退出,Activity所在的进程就变成了空进程(没有任何活动组件的进程),系统需要内存可能会优先终止该...
分类:
移动开发 时间:
2015-09-10 15:49:38
阅读次数:
310
一、Nagios简介 Nagios是一款开源的电脑系统和网络监视工具,能有效监控Windows、Linux和Unix的主机状态,交换机路由器等网络设置,打印机等。在系统或服务状态异常时发出邮件或短信报警第一时间通知网站运维人员,在状态恢复后发出正常的邮件或短信通知。 Nagios原名为NetSa.....
分类:
移动开发 时间:
2015-09-10 15:51:46
阅读次数:
383
DescriptionGiven a list of phone numbers, determine if it is consistent in the sense that no number is the prefix of another. Let’s say the phone cata...
分类:
其他好文 时间:
2015-09-10 15:50:45
阅读次数:
174
Missing NumberGiven an array containingndistinct numbers taken from0, 1, 2, ..., n, find the one that is missing from the array.For example,Givennums=...
分类:
其他好文 时间:
2015-09-10 15:51:14
阅读次数:
102
一、转义:< 大于号 & & 和 ' ’ 单引号 ...
分类:
其他好文 时间:
2015-09-10 15:50:09
阅读次数:
104
create proc [dbo].[sp_GetPagedList] ( @pageIndex int, @pageSize int, @orderBy nvarchar(512), @colu...
分类:
数据库 时间:
2015-09-10 15:48:30
阅读次数:
162
Given a roman numeral, convert it to an integer.Input is guaranteed to be within the range from 1 to 3999. 1 inline int c2n(char c) { 2 switc...
分类:
其他好文 时间:
2015-09-10 15:48:41
阅读次数:
149
最近组里研究了SDM算法在人脸对齐中的应用,是CMU的论文《Supervised Descent Method and its Applications to Face Alignment》。因为思路简洁巧妙有效,两年下来引用率就有283+了,以后估计1k+,这么有影响力的文章是要学习学习。网上有了...
分类:
移动开发 时间:
2015-09-10 15:49:48
阅读次数:
563