1. 报错: 11-20 14:06:10.89: W/dalvikvm(10190): threadid=15: thread exiting with uncaught exception (group=0x4001d400) 11-20 14:06:10.360: E/AndroidRunti ...
分类:
其他好文 时间:
2017-05-14 21:40:38
阅读次数:
252
Java语言是易学的。 Java语言的语法与C语言和C++语言很接近,使得大多数程序员很容易学习和使用Java。 Java语言是强制面向对象的。 Java语言提供类、接口和继承等原语,为了简单起见,只支持类之间的单继承,但支持接口之间的多继承,并支持类与接口之间的实现机制(关键字为implement ...
分类:
编程语言 时间:
2017-05-11 20:27:42
阅读次数:
176
using System; using System.Collections.Generic; using System.Text; using System.Data.OleDb; using System.Data; namespace BizUpdate.Implement { public ... ...
Given a nested list of integers, implement an iterator to flatten it. Each element is either an integer, or a list -- whose elements may also be integ ...
分类:
其他好文 时间:
2017-05-10 14:39:31
阅读次数:
184
1 public class Solution { 2 public int strStr(String haystack, String needle) { 3 int big = haystack.length(); 4 int sub = needle.length(); 5 if(big== ...
分类:
其他好文 时间:
2017-05-06 23:06:58
阅读次数:
224
热身~ 第一题H7N9 读了题,发现是个大水题。把读入的字符是大写的转换为了小写的。然后用strstr找是否有”h7n9“子串。 測试无误,交一发,WA了。我居然在想是不是strstr函数的问题。把strstr手动实现,又WA,最后又换了一种思路,把“h7n9”的四种组合存二维数组 里,"h7n9" ...
分类:
其他好文 时间:
2017-05-06 21:48:37
阅读次数:
132
php中的函数很多,字符串函数也非常多,下面总结几个常用到的字符串函数。记录下来为以后翻阅。 1.字符串组合/连接 a>implode() 将一个一维数组的值转化为字符串 b>join() 别名 implode() 2.字符串分割 a>explode() 将字符串按照指定的分隔符组合成一个数组。数组 ...
分类:
Web程序 时间:
2017-05-02 11:52:19
阅读次数:
180
Implement the following operations of a queue using stacks. push(x) -- Push element x to the back of queue.pop() -- Removes the element from in front ...
分类:
其他好文 时间:
2017-04-30 13:59:55
阅读次数:
125
1、 输入多组数据的时候 while(scanf("%s",s)!=EOF) while(gets(s)!=NULL) 用gets和scanf不一样。要注意 2、 输入字符串的时候 scanf("%s",s); scanf遇到空格会自己主动停止输入 scanf输入完字符串之后要记得推断是否加getc ...
分类:
其他好文 时间:
2017-04-27 13:58:52
阅读次数:
160
Regular Expression Matching Implement regular expression matching with support for '.' and '*'. '.' Matches any single character. '*' Matches zero or ...
分类:
其他好文 时间:
2017-04-27 10:13:56
阅读次数:
144