码迷,mamicode.com
首页 >  
搜索关键字:space    ( 18273个结果
[Leetcode]-Pascal's Triangle II
Given an index k, return the kth row of the Pascal’s triangle.For example, given k = 3, Return [1,3,3,1].Note: Could you optimize your algorithm to use only O(k) extra space?Hide Tags : Array 题目:返回帕...
分类:其他好文   时间:2015-07-04 15:36:11    阅读次数:119
[Leetcode]-Remove Duplicates from Sorted Array
Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length.Do not allocate extra space for another array, you must do this in place with cons...
分类:其他好文   时间:2015-07-04 15:35:29    阅读次数:123
Leetcode:Palindrome Number
题目出处:https://leetcode.com/problems/palindrome-number/ 题目:Determine whether an integer is a palindrome. Do this without extra space. 翻译:判断一个整型数是否是回文数 思路:将整型数转化为字符串,依次比较首尾 代码: public class Solution...
分类:其他好文   时间:2015-07-04 14:08:01    阅读次数:171
[siggraph14]杀戮地带的反射和体积光照技术
siggraph14, KillZone:ShadowFall的开发商guerilla games带来。 links:http://advances.realtimerendering.com/s2014/ sum 反射:screen space reflection+offline env map,并且物理正确 体积光:ray marching+shadow 各种优化手段都上了,在效果和...
分类:其他好文   时间:2015-07-04 12:41:58    阅读次数:191
SDN,NFV
CAPEX,capital expenditures 投资成本OPEX,Operating Expense 运营费用space & power consumption图解NFV与SDN关系软件定义型网络(SDN)和网络功能虚拟化(NFV)
分类:其他好文   时间:2015-07-04 11:10:29    阅读次数:184
Emacs配置文件
;;tab and space;;when true,emacs use mixture of tab and space to archieve(setq-default indent-tabs-mode nil);;control length used to offset.(setq-defa...
分类:系统相关   时间:2015-07-03 23:20:51    阅读次数:188
从终端获取一个字符串,分别统计其中大写字母、小写字母、数字及其它字符的个数。
//从终端获取一个字符串,分别统计其中大写字母、小写字母、数字及其它字符的个数。 #include #include int main(int argc,const char *argv[]) { char str[100]; char ch; int len,i; int letter = 0, number = 0, space = 0, other = 0; get...
分类:其他好文   时间:2015-07-03 17:27:59    阅读次数:116
Oracle 基本篇 --- HWM
#### 3.1.1 HWM (High Water Mark) ##### 3.1.1.1 定义 > To manage space, Oracle Database tracks the state of blocks in the segment. The **high water mark (HWM)** is the point in a segment beyond whi...
分类:数据库   时间:2015-07-03 16:19:17    阅读次数:864
我的Android Studio 优化之路
修改keymap修改常用的快捷键 代码补全(Eclipse: ALT+/) Android Studio中默认用的是Ctrl+Space, 这跟输入法切换冲突,找到Keymap->Main Menu->Code->Completion->Basic,改为ALT+/快速错误修正(Eclipse: Ctrl+1) 找到 Keymap->Other->Show Intention Action,改...
分类:移动开发   时间:2015-07-03 15:58:10    阅读次数:181
Android HAL模块实现
1. HAL介绍 Android的HAL(Hardware Abstract Layer硬件抽象层)是为了保护一些硬件提供商的知识产权而提出的,是为了避开linux的GPL束缚。思路是把控制硬件的动作都放到了Android HAL中,而linux driver仅仅完成一些简单的数据交互作用,甚至把硬件寄存器空间直接映射到user space。而Android是基于Aparch的license...
分类:移动开发   时间:2015-07-03 12:29:42    阅读次数:224
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!