码迷,mamicode.com
首页 > 2015年08月02日 > 全部分享
(转)Hadoop 简介
转自:http://www.open-open.com/lib/view/open1385685943484.htmlmapreduce是一种模式,一种什么模式呢?一种云计算的核心计算模式,一种分布式运算技术,也是简化的分布式编程模式,它主要用于解决问题的程序开发模型,也是开发人员拆解问题的方法。如...
分类:其他好文   时间:2015-08-02 16:27:45    阅读次数:110
Using RUNDLL32.exe to call a function within a dll
Using RUNDLL32.exe to call a function within a dll Rundll32 is a utility included with Windows that allows you to execute an exported DLL-function fr....
分类:其他好文   时间:2015-08-02 16:29:56    阅读次数:111
Writing a device driver for Windows
Writing a device driver for Windows In order to write a device driver for windows, one needs the device driver development kit (ddk) and a c compiler....
分类:Windows程序   时间:2015-08-02 16:29:35    阅读次数:150
Jquery
jQueryjQuery是js的基础之上进行的封装。它不是一种语言 是框架更加的简洁、方便、小巧。支持IE8、7、6。2.14支持IE9以上的版本jQuery--js$():转化为jsjs--jQueryget()转化为jquery用于搜索的,通过元素的 id 属性中给定的值$("#myDiv")....
分类:Web程序   时间:2015-08-02 16:29:03    阅读次数:135
iOS开发-高级UI-手势识别
一、手势识别器//0.打开UIImageView的用户交互self.iconView.userInteractionEnabled = YES;//1.创建手势识别器UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] init]...
分类:移动开发   时间:2015-08-02 16:29:52    阅读次数:295
Yosemite? 下升级 Python3.4 安装 numpy
由于新的项目需要python3.4,而Yosemite? 下的python 版本只有2.7。而网上安装python3.4 ,numpy 的方法不好用,且写一篇随笔记录。1.去https://www.python.org/downloads/ 下载python3.4,安装2.http://jingy....
分类:编程语言   时间:2015-08-02 16:28:52    阅读次数:147
[转]一个简单的Linux多线程例子 带你洞悉互斥量 信号量 条件变量编程
一个简单的Linux多线程例子 带你洞悉互斥量 信号量 条件变量编程 希望此文能给初学多线程编程的朋友带来帮助,也希望牛人多多指出错误。 另外感谢以下链接的作者给予,给我的学习带来了很大帮助 http://blog.csdn.net/locape/article/details/60403...
分类:编程语言   时间:2015-08-02 16:26:24    阅读次数:159
iOS开发-通过代码自定义cell
一、添加子控件和传递模型数据注意:子控件位置不固定,不能写死时就用代码自定义cell步骤一:将控制器改为继承UITableViewController,然后删除故事板上原来的View,新拖一个TableView,并将Class改为控制器步骤二:新建一个类WeiboCell,继承自UITableVie...
分类:移动开发   时间:2015-08-02 16:28:42    阅读次数:139
Leetcode Delete Node in a Linked List
Write a function to delete a node (except the tail) in a singly linked list, given only access to that node.Supposed the linked list is1 -> 2 -> 3 -> ...
分类:其他好文   时间:2015-08-02 16:27:59    阅读次数:112
有关collection中的一些数据结构
Collection接口 Collection是最基本的集合接口,一个Collection代表一组Object,即Collection的元素(Elements)。一些Collection允许相同的元素而另一些不行。一些能排序而另一些不行。JavaSDK不提供直接继承自Collection的类,Ja....
分类:其他好文   时间:2015-08-02 16:28:10    阅读次数:97
Creating an generated Earth AVI with C++
Creating an generated Earth AVI with C++ EarthGenerator.cpp/* EarthGenerator.cpp An example on how to use AviMemDC.cpp Copyright (c) 1998-2003 Torbe.....
分类:编程语言   时间:2015-08-02 16:26:20    阅读次数:255
【四边形】 HDU 3516 Tree Construction
通道题意:二维坐标上的点,建一个长度和最小的树包含全部点思路:定义状态 dp[i,j]表示点i到点j合并在一起的最小花费(树枝的长度),状态转移方程:dp[i,j]= min(dp[i,k]+dp[k+1,j]+cost(i,j) ) i #include #include #include...
分类:其他好文   时间:2015-08-02 16:28:16    阅读次数:118
POJ 2955 区间DP Brackets
求一个括号的最大匹配数,这个题可以和UVa 1626比较着看。注意题目背景一样,但是所求不一样。回到这道题上来,设d(i, j)表示子序列Si ~ Sj的字符串中最大匹配数,如果Si 与 Sj能配对,d(i, j) = d(i+1, j-1)然后要枚举中间点k,d(i, j) = max{ d(i,...
分类:其他好文   时间:2015-08-02 16:27:16    阅读次数:101
固定定位
前端大牛:冯鲁哲 1033850519 承接各种web开发业务 欢迎洽谈-------鲁大师Bootstrap 附加导航(Affix)插件 Bootstrap Affix 第一部分 ...
分类:其他好文   时间:2015-08-02 16:27:27    阅读次数:115
Lining Up Rabbit hunt poj 1118 poj 2606 点共线问题。
思路:首先把所有点按照坐标排序,然后以每一个点为基准点,计算其他点与这个点连线的斜率,将所有斜率排序后求最多的相同的斜率数即可。 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8...
分类:其他好文   时间:2015-08-02 16:27:27    阅读次数:101
算法学习笔记——判断最小回文子串
利用C语言实现的最长回文子串算法 1 # include 2 # include 3 # include 4 5 # define MAXN 5000 + 10 6 char buf[MAXN], s[MAXN]; //buf输入字符串, s去掉标点空格并转为大写的预处理字符串 7 int p[.....
分类:编程语言   时间:2015-08-02 16:25:27    阅读次数:136
LeetCode:Climbing Stairs
You are climbing a stair case. It takes n steps to reach to the top.Each time you can either climb 1 or 2 steps. In how many distinct ways can you cli...
分类:其他好文   时间:2015-08-02 16:25:34    阅读次数:125
1726条   上一页 1 ... 49 50 51 52 53 54 55 ... 102 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!