首页 > 2014年02月03日 > 全部分享
上周热点回顾(1.27-2.2)
热点随笔: · 学一点Git--20分钟git快速上手(-Neil) · 软件开发真的这么简单吗?(川山甲) · ASP.NET MVC 3升级至MVC 5.1的遭遇:“已添加了具有相同键的项”(dudu) · 春节前最后一篇,CRUD码农专用福利:PDF.NET之SOD Version 5.1.0...
分类:其他   时间:2014-02-03 13:23:49    收藏:0  评论:0  赞:0  阅读:566
随机抽样一致性算法(RANSAC)示例及源代码
大约在两年前翻译了《随机抽样一致性算法RANSAC》,在文章的最后承诺写该算法的C#示例程序。可惜光阴似箭,转眼许久才写出来,实在抱歉。本文将使用随机抽样一致性算法来来检测直线和圆,并提供源代码下载。
分类:其他   时间:2014-02-03 13:22:59    收藏:0  评论:0  赞:0  阅读:735
leetcode--Jump Game II
Given an array of non-negative integers, you are initially positioned at the first index of the array.Each element in the array represents your maximu...
分类:其他   时间:2014-02-03 13:22:09    收藏:0  评论:0  赞:0  阅读:436
LeetCode: Anagrams
Given an array of strings, return all groups of strings that are anagrams.第一次面试dropbox就是面的anagrams。在面试前还恰巧看到了这个题,最后答得还是一塌糊涂。我在面试的时候想到了对string字符排序,但我忘记...
分类:其他   时间:2014-02-03 13:21:19    收藏:0  评论:0  赞:0  阅读:421
LeetCode: Permutation I & II
Given a collection of numbers, return all possible permutations.For example,[1,2,3]have the following permutations:[1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,...
分类:其他   时间:2014-02-03 13:19:39    收藏:0  评论:0  赞:0  阅读:541
[原创]传递UIScrollView的滑动事件到其子视图中
在开发项目时,遇到了一个问题:我的UIScrollViewOut中嵌入了一个UIScrollViewIn,当我想要拖动UIScrollViewIn时,UIScrollViewOut却动了,而UIScrollViewIn没有动。但是只要按住UIScrollViewIn一会再拖动,UIScrollVie...
分类:其他   时间:2014-02-03 13:18:49    收藏:0  评论:0  赞:0  阅读:423
升级python版本导致Django无法使用的解决办法
运行环境是CentOS6.2 x86_64,在把python从2.6.6升级到2.7.5后,由于环境变量的改变,在python代码中再import django的话将会出现以下报错:“No module named django.core” 这时需要重新编译安装一下。注意此时python的环境变量要...
分类:编程语言   时间:2014-02-03 13:17:59    收藏:0  评论:0  赞:0  阅读:477
[Leetcode]-- Reverse Integer
eetcode -- Reverse IntegerReverse digits of an integer.Example1:x = 123, return 321Example2:x = -123, return -321Have you thought about this?Here are ...
分类:其他   时间:2014-02-03 13:17:09    收藏:0  评论:0  赞:0  阅读:333
[Leetcode]-- Subsets
Given a set of distinct integers,S, return all possible subsets.Note:Elements in a subset must be in non-descending order.The solution set must not co...
分类:其他   时间:2014-02-03 13:16:19    收藏:0  评论:0  赞:0  阅读:391
[Leetcode]--Longest Consecutive Sequence
Given an unsorted array of integers, find the length of the longest consecutive elements sequence.For example,Given[100, 4, 200, 1, 3, 2],The longest ...
分类:其他   时间:2014-02-03 13:15:29    收藏:0  评论:0  赞:0  阅读:426
[Leetcode]-- Word Search
Given a 2D board and a word, find if the word exists in the grid.The word can be constructed from letters of sequentially adjacent cell, where "adjace...
分类:其他   时间:2014-02-03 13:14:39    收藏:0  评论:0  赞:0  阅读:453
关于UIColor这个类的一些不知道的事
UIColor试剂上是UIKit对Core Graphics中CGColor的一个包装类。党我们在Core Graphics这个较低的层次编程时,我们对于如何使用我们的颜色对象突然有了更多的控制,我们甚至可以检测颜色的组成部分,比方说,一些其他代码传给你一个UIColor类型的对象,而你想要检测其红...
分类:其他   时间:2014-02-03 13:12:59    收藏:0  评论:0  赞:0  阅读:520
URAL 1297 Palindrome 最长回文子串
POJ上的,ZOJ上的OJ的最长回文子串数据量太大,用后缀数组的方法非常吃力,所以只能挑个数据量小点的试下,真要做可能还是得用manacher。贴一下代码两个小错,一个是没弄懂string类的substr的用法是S.substr(i,len)从i开始的长度为len的一段。另外一个是RMQ的时候,询问...
分类:其他   时间:2014-02-03 13:12:09    收藏:0  评论:0  赞:0  阅读:390
[Leetcode]--Convert Sorted List to Binary Search Tree
Ref:http://www.cnblogs.com/feiling/p/3267917.html3 中方法 两种top down, 一种 bottom up(TODO).
分类:其他   时间:2014-02-03 13:10:29    收藏:0  评论:0  赞:0  阅读:419
【C#小知识】C#中一些易混淆概念总结(二)
目录:【C#小知识】C#中一些易混淆概念总结继上篇对一些C#概念问题进行细节的剖析以后,收获颇多。以前,读书的时候,一句话一掠而过,但是现在再去重读的时候,每句话发现都包含大量的信息。这一篇继续总结自己的学习笔记,给大家深度的剖析一些概念性问题,有助于大家对C#的理解。---------------...
分类:其他   时间:2014-02-03 13:09:39    收藏:0  评论:0  赞:0  阅读:600
零基础学习hadoop到上手工作线路指导
零基础学习hadoop,没有想象的那么困难,也没有想象的那么容易。在刚接触云计算,曾经想过培训,但是培训机构的选择就让我很纠结。所以索性就自己学习了。整个过程整理一下,给大家参考,欢迎讨论,共同学习。从一开始什么都不懂,到能够搭建集群,开发。整个过程,只要有Linux基础,虚拟机化和java基础,其...
分类:其他   时间:2014-02-03 13:08:49    收藏:0  评论:0  赞:0  阅读:428
linux 高级编程
一、IO与文件目录管理1.pread与lseek+read的区别 pread读取后不会改变读写位置2.mmap映射 /proc/${pid}/mem 无法映射,并且 mmap函数最后一个参数文件中的映射开始位置 必须是pagesize的证书倍,否者出错3.IO的实际用户(real user)与有效用...
分类:其他   时间:2014-02-03 13:07:59    收藏:0  评论:0  赞:0  阅读:495
RuleML 例子 - own.ruleml
http://ruleml.org/1.0/exa/Datalog/own.ruleml--> buy person merchant object keep person object own person ...
分类:其他   时间:2014-02-03 13:07:09    收藏:0  评论:0  赞:0  阅读:415
HDU 1232 畅通工程(并差集)
畅通工程Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Problem Description某省调查城镇交通状况,得到现有城镇道路统计表,表中列出了每条道路直接连通的城镇。省政府“畅通...
分类:其他   时间:2014-02-03 13:06:19    收藏:0  评论:0  赞:0  阅读:433
在java源码中看到这个单词unascribed
在java源码中看到这个单词unascribed,标记在author的后面,ascribed的意思是归因于,那unascribed应该就是不归属于任何的意思吧,也就是java源码的作者不归属于任何人?!
分类:其他   时间:2014-02-03 13:05:29    收藏:0  评论:0  赞:0  阅读:505
232条   上一页 1 ... 4 5 6 7 8 ... 12 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!