码迷,mamicode.com
首页 > 其他好文
leetcode - Search Insert Position
Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in order. You may assume no duplicates in the array....
分类:其他好文   时间:2014-10-25 17:23:51    阅读次数:131
百度技术沙龙&InfoQ笔记
百度技术沙龙&InfoQ笔记...
分类:其他好文   时间:2014-10-25 17:25:39    阅读次数:153
Full Stack developer and Fog Computing
尊重开发者的劳动成果,转载请注明From郝萌主 http://blog.csdn.net/haomengzhu 看到这两组词,你是什么感觉? 不知所云或者这个我了解一些。 如果你不知所云,那么你就“危险了”、、、 Full Stack developer 全栈工程师 由于经常在各种技术穿梭,他会经常忘记代码的语法和一些API,所以他经常需要去查...
分类:其他好文   时间:2014-10-25 17:24:51    阅读次数:193
uva-10487 - Closest Sums
暴力枚举后去重最后二分加判断找答案 #include #include #include #include #include #include #include #include #include #include using namespace std; int main() { int count=0; int t,m,i,n,j; int a[1010]; while(ci...
分类:其他好文   时间:2014-10-25 17:23:14    阅读次数:190
Yii Framework开发教程(1)配置环境及第一个应用HelloWorld
Yii Framework开发教程(1)配置运行环境及第一个应用HelloWorld...
分类:其他好文   时间:2014-10-25 17:22:44    阅读次数:229
KVM虚拟化部署
=========================== yum install qemu-kvm qemu-kvm-tools python-virtinst qemu-img bridge-utils libvirt libguestfs-tools-c /etc/sysconfig/network-scripts/ifcfg-em2 DEVICE=em2 TYPE=Ethern...
分类:其他好文   时间:2014-10-25 17:24:36    阅读次数:311
leetcode - Search for a Range
Given a sorted array of integers, find the starting and ending position of a given target value. Your algorithm's runtime complexity must be in the order of O(log n). If the target is not found ...
分类:其他好文   时间:2014-10-25 17:24:28    阅读次数:145
cocos2d-x实现node圆弧运动 (附源代码)
纪录下自己写的东西! 头文件: /* 圆弧动作类 */ class CCArcBy : public cocos2d::CCActionInterval { public: //初始化圆弧动作类 //duration: 动作类的持续时间 //ptCenter: 圆弧的中心点 //deltaAngle: 弧度的变化量,用正负来表示逆时针或顺时针方向 bool initWithDurat...
分类:其他好文   时间:2014-10-25 17:24:14    阅读次数:173
微观经济学(九):市场与福利 - 应用:国际贸易
前言      在第三节中,我们介绍了国际贸易的好处,各国都可以从贸易中获益,因为贸易使每个国家都可以专门从事自己最擅长的活动。但是在那里的分析是不完善的,它没有解释在国际市场上如何实现这种贸易的好处,或者这些好处如何在各个经济参与者之间进行分配,在本节中,将详细介绍这些内容。 决定贸易的因素 没有贸易时的均衡           假设我们国家当前要贸易的产品是纺织品,国内纺织品市...
分类:其他好文   时间:2014-10-25 17:23:26    阅读次数:1400
leetcode - Implement strStr()
Implement strStr(). Returns a pointer to the first occurrence of needle in haystack, or null if needle is not part of haystack. class Solution { public: char *strStr(char *haystack, char *ne...
分类:其他好文   时间:2014-10-25 17:22:28    阅读次数:122
【LeetCode】Search in Rotated Sorted Array 解题报告
【题目】 Suppose a sorted array is rotated at some pivot unknown to you beforehand. (i.e., 0 1 2 4 5 6 7 might become 4 5 6 7 0 1 2). You are given a target value to search. If found in the a...
分类:其他好文   时间:2014-10-25 17:20:39    阅读次数:225
poj3070--Fibonacci(矩阵的快速幂)
Fibonacci Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 9650   Accepted: 6856 Description In the Fibonacci integer sequence, F0 = 0, F1 = 1, and Fn = Fn ? ...
分类:其他好文   时间:2014-10-25 17:21:23    阅读次数:178
Yii Framework开发教程(2)使用表单Form
Yii Framework开发教程(2)使用表单Form...
分类:其他好文   时间:2014-10-25 17:20:44    阅读次数:182
UIActionSheet 提示框
UIActionSheet 提示框...
分类:其他好文   时间:2014-10-25 17:20:46    阅读次数:212
static HashMap犹如程序之外的一张表
最近在写程序不停的使用静态的HashMap 使用hashmap保存了在线信息,保存了类对象,保存了临时密码, 保存对象我调用的时候不用再考虑其它客观的因素了只需要使用指定的name来查表,有效的错开了大数据量信息的对象无法调用,乱调用情况,static HashMap在我脑海了就是一张表我可以很方便的去存储一个信息并在其它的地方获得对应的信息。 希望大家来尝试,使用一下!...
分类:其他好文   时间:2014-10-25 17:21:34    阅读次数:226
Introduction to gaussian filter 高斯滤波器
Introduction to gaussian filter                          我尝试尽可能低门槛的介绍这些好玩的东东~这里仅仅需要正态分布函数作为基础即可开始玩图像的高斯滤波了. Don't panic !                              在通常的图像中,像素点都很多,很多情况都是很多一...
分类:其他好文   时间:2014-10-25 17:19:28    阅读次数:236
POSIX-Data Structure
strcut sigeventTheheader shall define thesigeventstructure, which shall include at least the following members:struct sigevent { int sige...
分类:其他好文   时间:2014-10-25 17:19:21    阅读次数:283
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!