#import "ViewController.h"#import @interface ViewController ()@property(nonatomic,strong)CLLocationManager*manager;@property (weak, nonatomic) IBOutle...
分类:
其他好文 时间:
2015-07-17 22:44:17
阅读次数:
176
#import "ViewController.h"#import #import "MYAnnotation.h"@interface ViewController ()@property(nonatomic,strong)CLLocationManager *mag;@property(nona...
分类:
其他好文 时间:
2015-07-17 22:41:38
阅读次数:
189
【综述】(中科院)樊彬老师-“局部图像特征描述概述”这次我们荣幸地邀请到中国科学院自动化研究所的樊彬老师为我们撰写图像特征描述符方面的最新综述。樊彬老师在图像特征描述方面已连续发表了包括TPAMI、PR、ICCV、CVPR在内的多篇高质量论文。他的个人主页为:http://www.sigvc.org...
分类:
其他好文 时间:
2015-07-17 22:41:45
阅读次数:
250
有一次在cf上看到了,666,- -//// _oo0oo_// o8888888o// 88" . "88// (| -_- |...
分类:
其他好文 时间:
2015-07-17 22:40:27
阅读次数:
508
Once upon a time, there is a special coco-cola store. If you return three empty bottles to the shop,you’ll get a full bottle of coco-cola to drink. If...
分类:
其他好文 时间:
2015-07-17 22:42:09
阅读次数:
195
这几天团队打算一起学习Android App漏洞挖掘方面的知识,于是乎拿了一个app当测试例子,争取在上面找到漏洞。在学习过程中发现Android四大组件的安全性还是占有较大的比重,另外比较关心的是数据的安全性。数据泄漏、明文存储等和数据相关都是比较重要的。但是今天找到的一个漏洞是关于Activit...
分类:
其他好文 时间:
2015-07-17 22:39:30
阅读次数:
644
1.JQuery vs Javascipt 问两个问题: 1) 你用过JQuery吗?当然! 2) 感觉JQuery相对于原生纯Javascript优势在哪里? 我的答案:JQuery更直接方便,兼容性好,代码少,好理解,快速开发,Bug少……2. Angular vs JQuery ...
分类:
其他好文 时间:
2015-07-17 22:40:37
阅读次数:
214
题目链接:http://acm.hust.edu.cn/vjudge/problem/visitOriginUrl.action?id=173144题意: 输入n个数,要使这n个数都不相同,且只能加,输出最少要加的多少。 案例: 1)input 4 1 3 1 4 output 12)i...
分类:
其他好文 时间:
2015-07-17 22:41:59
阅读次数:
177
1.添加MapKit.framework框架 ,在plist中添加字段,用于,获取用户当前位置设置 NSLocationAlwaysUsageDescription2.代码#import "ViewController.h"#import @interface ViewController ()@p...
分类:
其他好文 时间:
2015-07-17 22:38:51
阅读次数:
146
题意:一个n*m的矩阵,需要遍历所有点,从起点出发每次只可向右或向下跳,若到达位置的数字与上一步的数字相同,则获得该数字大小的能量; 否则消耗能量:哈密顿距离减1;求可获得的最大能量;思路:网络流之最大k路径覆盖。 源点向n*m各点建流量为1,费用为0的边; n*m各点向汇点建流量...
分类:
其他好文 时间:
2015-07-17 22:40:55
阅读次数:
158
当 svn 提示clean up时,而clean up 仍然没用的情况下先下载 sqlite3.exe然后 在svn目录下,.svn 隐藏文件夹中 有个 wc.db 的文件, 执行下面命令行sqlite3.exe.svn/wc.db"select*fromwork_queue"查看 这个 db 文件...
分类:
其他好文 时间:
2015-07-17 22:38:23
阅读次数:
234
PCA的数学原理PCA(Principal Component Analysis)是一种常用的数据分析方法。PCA通过线性变换将原始数据变换为一组各维度线性无关的表示,可用于提取数据的主要特征分量,常用于高维数据的降维。网上关于PCA的文章有很多,但是大多数只描述了PCA的分析过程,而没有讲述其中的...
分类:
其他好文 时间:
2015-07-17 22:38:16
阅读次数:
234
HDU 4627Time Limit:1000MSMemory Limit:32768KB64bit IO Format:%I64d & %I64uDescriptionThere are many unsolvable problem in the world.It coul...
分类:
其他好文 时间:
2015-07-17 22:38:41
阅读次数:
127
DescriptionBackgroundProfessor Hopper is researching the sexual behavior of a rare species of bugs. He assumes that they feature two different genders...
分类:
其他好文 时间:
2015-07-17 22:37:37
阅读次数:
141
Rabbit Tom and rabbit Jerry are running in a field. The field is an N×N grid. Tom starts from the up-left cell and Jerry starts from the down-right ce...
分类:
其他好文 时间:
2015-07-17 22:38:54
阅读次数:
187
【综述】(MIT博士)林达华老师-"概率模型与计算机视觉”距上一次邀请中国科学院的樊彬老师为我们撰写图像特征描述符方面的综述(http://www.sigvc.org/bbs/thread-165-1-1.html)之后,这次我们荣幸地邀请到美国麻省理工学院(MIT)博士林达华老师为我们撰写“概率模...
分类:
其他好文 时间:
2015-07-17 22:37:37
阅读次数:
177
题目传送门 1 /* 2 模拟:看懂题意,主要是碰壁后的转向,笔误2次 3 */ 4 #include 5 #include 6 #include 7 #include 8 using namespace std; 9 10 const int MAXN = 1e3 + 10;11 ...
分类:
其他好文 时间:
2015-07-17 22:35:54
阅读次数:
184