Plus OneGiven a non-negative number represented as an array of digits, plus one to the number.The digits are stored such that the most significant dig...
分类:
其他好文 时间:
2014-11-10 21:45:39
阅读次数:
191
这题目一直wa,原来是因为我把JUDGE写错了,对拍了一下午都没检查出来。水DP啊。 1 #include 2 #include 3 #include 4 #include 5 #include 6 using namespace std; 7 8 #define MAXN 1020 9...
分类:
其他好文 时间:
2014-11-10 17:23:36
阅读次数:
177
题目:对一个用vector存的数字进行加1,然后返回加1后的值。一次就在oj上通过了。就是进位加上当前位如果大于9,那就当前位等于0;随后进位还为1的话就是在数组前面插入一个1;class Solution {public: vector plusOne(vector &digits) ...
分类:
其他好文 时间:
2014-11-10 01:07:46
阅读次数:
227
1. abstract classabstract class can have anything a normal class can have plus abstract methodpublic abstract class Test11 { public int a; priva...
分类:
编程语言 时间:
2014-11-09 07:29:55
阅读次数:
154
Max Sum Plus Plus
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 17336 Accepted Submission(s): 5701
Problem Description
Now I t...
分类:
其他好文 时间:
2014-11-08 18:17:57
阅读次数:
262
1、Firewall Exceptions for Oracle Database
For basic database operation and connectivity from remote clients, such as SQL*Plus, Oracle Call Interface (OCI), Open Database Connectivity (ODBC), Object L...
分类:
数据库 时间:
2014-11-07 22:10:45
阅读次数:
305
下面是两种登入方式的截图,用sqlplus登入需要输入主机字:
如果是用本机的SQL*Plus连接本机的数据库,则“主机字符串”可以为空。
如果是从远程连接xp的oracle数据库,可用如下方法
1、在windows服务启动oracle相关服务器;
2、在xp的命令行用“sqlplus /nolog”登录后以sysdba连接数据库("conn /as sysdba");
3、用“sele...
分类:
数据库 时间:
2014-11-07 17:08:35
阅读次数:
187
土豪们最近都上手iPhone 6/6 Plus了,烦恼的是iPhone 6/Plus增大了屏幕和分辨率,由此带来了不少应用的适配问题,排版乱了,app周边多了一片空白,是不是很煞风景?微信团队昨天放出了最新的微信6.0.1版本,不过只有iPhone上的,因为它专门针对新发布的iPhone 6、i.....
分类:
微信 时间:
2014-11-07 11:15:29
阅读次数:
356
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...
分类:
其他好文 时间:
2014-11-06 19:16:22
阅读次数:
175
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...
分类:
其他好文 时间:
2014-11-06 19:12:07
阅读次数:
204