小小程序媛  
得之坦然,失之淡然,顺其自然,争其必然
上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 34 下一页

2015年5月13日

摘要: 1. MySQL数据库: 在涉及到一些大型的Web系统或者嵌入式软件的开发时,都少不了用数据库来管理数据。在Windows操作系统下,使用过各种各样的数据库,如:sqlServer、Oracle、MySQL等等,我们知道,在Windows系统上的软件安装配置都是界面式,操作明显而简捷。 那么在... 阅读全文
posted @ 2015-05-13 15:01 Coding菌 阅读(269) 评论(0) 推荐(0) 编辑

2015年5月7日

摘要: 1 磁盘组成与分区 1.1 磁盘物理组成 (1)圆形盘片—记录数据 (2)机械手臂及磁头—读写盘片数据 (3)主轴马达—使得机械手臂成功读写数据驱动 1.2 盘片物理组成 (1)扇区—最小物理存储单位,512bytes (2)柱面—扇区组成的圆,分区的最小单位 (3)第一扇区—最重要的扇区,包含... 阅读全文
posted @ 2015-05-07 20:39 Coding菌 阅读(179) 评论(0) 推荐(0) 编辑

2015年4月28日

摘要: 题目: Determine whether an integer is a palindrome. Do this without extra space. Some hints: Could negative integers be palindromes? (ie, -1) If yo... 阅读全文
posted @ 2015-04-28 21:31 Coding菌 阅读(152) 评论(0) 推荐(0) 编辑
 
摘要: 题目: Given an array of integers, find two numbers such that they add up to a specific target number. The function twoSum should return indices of ... 阅读全文
posted @ 2015-04-28 08:34 Coding菌 阅读(159) 评论(0) 推荐(0) 编辑

2015年4月27日

摘要: 题目: Implement atoi to convert a string to an integer. Hint: Carefully consider all possible input cases. If you want a challenge, please do not s... 阅读全文
posted @ 2015-04-27 16:57 Coding菌 阅读(118) 评论(0) 推荐(0) 编辑
 
摘要: 题目: Reverse digits of an integer. Example1: x = 123, return 321 Example2: x = -123, return -321 分析: 乍看,好似是一个很简单的题目,只需要将整数从最低位起到最高位依次处理即可,但是,此题的关... 阅读全文
posted @ 2015-04-27 15:36 Coding菌 阅读(146) 评论(0) 推荐(0) 编辑

2015年4月23日

摘要: 题目: You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a... 阅读全文
posted @ 2015-04-23 20:48 Coding菌 阅读(148) 评论(0) 推荐(0) 编辑

2015年1月29日

摘要: 内存分配方式 内存分配方式一共有三种: (1)从静态存储区域分配; 内存在程序编译的时候就已经分配好,这块内存在程序的整个运行期间都存在,例如,全局变量,静态变量。 (2)在栈上创建; 在执行函数时,函数内局部变量的存储单元都可以在栈上创建,函数执行结束后这些存储单元自动被释放。栈内存分配运算... 阅读全文
posted @ 2015-01-29 15:38 Coding菌 阅读(188) 评论(0) 推荐(0) 编辑

2015年1月27日

摘要: Cocos2d-x学习资料集锦: 1.Cocos2d-x官方中文文档:https://github.com/chukong/cocos-docs/blob/master/catalog/zh.md 推荐理由:中文的你不看,难道想看英文的? 2.Cocos2d-x英文论坛:http://disc... 阅读全文
posted @ 2015-01-27 14:38 Coding菌 阅读(169) 评论(0) 推荐(0) 编辑
 
摘要: 配置好开发环境之后,尝试创建一个cocos项目 (1)打开cocos2d-x安装目录,如D:\DIY\cocos2d-x-3.3 看到目录下有可执行文件 download-deps 以及 setup ,先执行download-deps 键入 yes,这样可以避免重复下载库文件,然后执行set... 阅读全文
posted @ 2015-01-27 11:03 Coding菌 阅读(265) 评论(0) 推荐(0) 编辑
上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 34 下一页