引用地址:http://www.cnblogs.com/notepi/archive/2013/06/15/3137103.htmlLinux 学习书目推荐Linux基础1、《Linux与Unix Shell 编程指南》C语言基础1、《C Primer Plus,5th Edition》【美】Ste...
分类:
系统相关 时间:
2015-04-18 19:13:50
阅读次数:
231
http://archive.download.redhat.com/pub/redhat/linux/9/en/iso/i386/http://www.jb51.net/do/plus/download1.php?open=1&aid=59919&cid=3&link=ZnRwOi8vMjExLj...
分类:
系统相关 时间:
2015-04-18 19:13:11
阅读次数:
284
Given a non-negative number represented as an array of digits, plus one to the number.The digits are stored such that the most significant digit is at...
分类:
其他好文 时间:
2015-04-18 17:23:35
阅读次数:
97
[root@rac2 ~]# su - oracle[oracle@rac2 ~]$ sqlplus "/as sysdba"SQL*Plus: Release 11.2.0.4.0 Production on Fri Apr 17 17:45:31 2015Copyright (c) 1982, ...
分类:
数据库 时间:
2015-04-17 19:55:33
阅读次数:
147
IOS7,8 Asset iPhone 6 Plus (@3x) iPhone 6 and iPhone 5 (@2x) iPhone 4s (@2x) iPad and iPad mini (@2x) iPad 2 and iPad mini (@1x) App icon 180 x 180 120 x 120 120 x 120 152 x 152 76 x 76 App icon fo...
分类:
移动开发 时间:
2015-04-17 09:45:16
阅读次数:
128
习题2.1/*各种类型在本机所在字长 */ #includeint main(){ std::coutint main(){ unsigned u=10,u2=42; std::coutint main(){ int month=9,day=7; std::coutint main()...
分类:
编程语言 时间:
2015-04-17 01:01:43
阅读次数:
280
用单个保存的数字表示一个十进制数,实现+1操作。保存的第一个数一定要是有意义的(非零)。【思路】很容易想到把保存的数字转换为实际十进制数,然后+1,再按原格式保存,但很明显有超范围数据如何表示的问题。比如9876543210.(试过用long long类型也放不下?)所以要考虑几种情况:1.个位数字...
分类:
其他好文 时间:
2015-04-16 11:55:00
阅读次数:
107
题目链接https://leetcode.com/problems/plus-one/这是digit这类题里最简单的一道了,这类题基本都不难,但是需要把几个boundary case考虑到,这道题里需要考虑的是进位之后首位的情况。其他case以后遇到再提。class Solution {public...
分类:
其他好文 时间:
2015-04-16 06:42:24
阅读次数:
131
因为老师要求用TC所以是在TC上运行……因为上课讲的课下就忘了:虽然老师用的是2.0,以下是在TC3.0上运行的,记下来以免哪天又记忆损伤【主文件-cwww1.cpp】↑主文件:a,b,c为全局变量,plus为全局函数,文件名:cww1.cpp【函数文件-cwww2.cpp】↑文件2:extern那...
分类:
编程语言 时间:
2015-04-16 01:05:37
阅读次数:
193