码迷,mamicode.com
首页 >  
搜索关键字:pointer    ( 2176个结果
position:fixed部分版本的浏览器不支持
ie6-ie8浏览器不支持这个属性.fixed{ position:fixed; /*对于火狐等其他浏览器需要设置的*/ top:700px; /*同上*/ width:30px; height:30px; cursor:pointer; display:none; } .ie{ _p...
分类:其他好文   时间:2014-09-03 16:15:46    阅读次数:243
重温《STL源码剖析》笔记 第三章
第三章:迭代器概念与traits编程技法 迭代器是一种smart pointer auto_Ptr 是一个用来包装原生指针(native pointer)的对象,声明狼藉的内存泄漏问题可藉此获得解决。 auto_ptr用法如下,和原生指针一模一样:void func() { auto_p...
分类:其他好文   时间:2014-09-02 22:34:25    阅读次数:266
leetcode - Copy List with Random Pointer
A linked list is given such that each node contains an additional random pointer which could point to any node in the list or null.Return a deep copy ...
分类:其他好文   时间:2014-09-02 10:19:24    阅读次数:194
Copy List with Random Pointer
这个题目是深度复制链表,就是所有节点都是新分配的空间,这一点不难做到,难的是新链表random指针的赋值,想想也没什么好办法,就用map存储两个链表的映射关系,在第一次遍历时只新建节点,建立链表,令新链表中节点的random值等于旧链表的值。第二次遍历再根据map一一映射。 1 class Solu...
分类:其他好文   时间:2014-09-02 00:08:03    阅读次数:259
Lua1.0 代码分析 hash.c
hash.c 代码分析 Lua 中最重要的一个数据结构及相关操作。 主要看下几个对外的接口。 /* **?Create?a?new?hash.?Return?the?hash?pointer?or?NULL?on?error. */ Hash?*lua_hashcreate?(unsigned?i...
分类:其他好文   时间:2014-08-30 17:52:30    阅读次数:168
Windows Phone 8.1开发:触控和指针事件2
原文出自:http://www.bcmeng.com/windows-phone-touch1/请在此输入内容(想死啊,写了一个小时,直接没保存不小心删掉了。那就简单说说吧)Pointer事件有以下事件:PointerCanceledPointerEnteredPointerExitedPointe...
分类:Windows程序   时间:2014-08-29 18:01:28    阅读次数:315
Unix 网络编程 读书笔记
第一章:C/C++语言提供两种不同的编程模式:IPL32和PL64。? IPL32 ● 表示integer/pointer/long三种数据类型是32位(4个字节),在这种模式下,提供32位的地址空间,理论的内存使用限制为4G。? PL64 ● 表示pointer/long两种数据类型是64位(8个...
分类:其他好文   时间:2014-08-27 14:31:37    阅读次数:182
场景(Scene)
// 创建Scene类class MyScene : public cocos2d::Layer{public: // there's no 'id' in cpp, so we recommend returning the class instance pointer static ...
分类:其他好文   时间:2014-08-26 11:07:05    阅读次数:195
[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: ...
分类:其他好文   时间:2014-08-25 13:11:34    阅读次数:153
LeetCode: Copy List with Random Pointer
LeetCode: Copy List with Random PointerA linked list is given such that each node contains an additional random pointer which could point to any node ...
分类:其他好文   时间:2014-08-23 12:34:30    阅读次数:193
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!