Implement a MyQueue class which implements a queue using two stacks./*Use two stacks, when enqueue, first pop all the elements in stack2 on stack1, th...
分类:
其他好文 时间:
2014-07-16 20:39:50
阅读次数:
234
Class.forName("org.hsqldb.jdbcDriver").newInstance(); Connection con = java.sql.DriverManager.getConnection("jdbc:hsqldb:hsql://localhost:9001/hadoo.....
分类:
移动开发 时间:
2014-07-14 09:15:09
阅读次数:
220
报错的代码是:
The specified child already has a parent. You must call removeView() on the child's parent first
大致是说你的弹出框中的view已经绑定了一个paren,就是你的弹出框。当你再次调用显示的时候,他以为你又要绑定到一个新的窗口上去。解决的方法是每次显示之前都重新填充设置view.如下:...
分类:
其他好文 时间:
2014-07-12 23:50:41
阅读次数:
354
/*
D - Election Time
Time Limit:1000MS Memory Limit:65536KB 64bit IO Format:%I64d & %I64u
Submit
Status
Description
The cows are having their first election after overthrowing the tyrannical ...
分类:
其他好文 时间:
2014-07-12 23:46:56
阅读次数:
262
hadoop出现namenode running as process 18472. Stop it first.等等,类似的出现了好几个。
解决办法:说明你没有启动起来,所以在启动之前你需要 在重新启动hadoop之前要先stop掉所有的hadoop服务。
然后恢复正常启动。...
分类:
其他好文 时间:
2014-07-12 19:54:29
阅读次数:
364
前言
当序列中元素范围比较大时,就不适合使用计数排序。针对这种情况,就有了基数排序,这是一种按位排序。它仍然是以计数排序为基础。
基数排序
基数排序的基数:十进制数的基数自然是10,二进制的基数自然是2。通常有两种按位排序策略:1.高位优先法(most significant digit first,MSD):简单讲就是从高位排起。2.低位优先法(least significant digit first,LSD):它与高位优先相反,从低位排起。从排序效果上看,高位优先比较直观,但却涉及到递归的过程,故...
分类:
其他好文 时间:
2014-07-12 18:56:51
阅读次数:
225
1.在搜索匹配时注意大小写问题
2.别为了解决旧问题而产生新问题。
3.使用enum的好处:使用enum的方法或类会受到它的保护,不会有未定义的enum的值。因此不会有打错字或拼错字,对任何具有标准范围或合法值的东西都能避免取得坏数据。...
分类:
其他好文 时间:
2014-07-12 18:31:55
阅读次数:
225
/*table-layout:fixed 会使表格均等分*/#TreeView1 table { width:290px; table-layout: fixed; }#TreeView1 td:first-child { ...
分类:
Web程序 时间:
2014-07-12 16:11:21
阅读次数:
148
public class OperationString { public static void main(String[] args) { String str[]=new String [4];//定义长度为4的字符串数组 str[0]="first"; ...
分类:
其他好文 时间:
2014-07-12 15:22:36
阅读次数:
161
HttpSessionHttp协议Http协议是无状态的stateless,所以一个用户对服务器访问的话,不管多少次,服务器都会像第一次被访问一样。也就是说服务器不会区别用户。一个请求过来,服务器会给一个相应,然后之间的联系就断了。Session如何让服务器能够识别出来两个请求是来自同一个客户的呢?...
分类:
Web程序 时间:
2014-07-12 15:00:02
阅读次数:
211