1 var createXHR=function(){ 2 if(typeof XMLHttpRequest!="undefined"){ 3 return new XMLHttpRequest(); 4 }else if(typeof ActiveXO...
分类:
Web程序 时间:
2015-06-11 18:25:51
阅读次数:
144
No.27 Remove ElementGiven an array and a value, remove all instances of that value in place and return the new length.The order of elements can be cha...
分类:
其他好文 时间:
2015-06-11 18:24:51
阅读次数:
104
public class SqQueue {
int[] data;
int front, rear;
SqQueue() {
data = new int[30];
front = rear = -1;
}
boolean empty() {
return front == rear;
}
boolean enQueue(int e) {
if(rear ==...
分类:
其他好文 时间:
2015-06-11 17:09:29
阅读次数:
125
/**
* 调用函数取得数据表的ID值
* @param tableName 表名
* @return
* @throws SQLException
*/
public String callFun(String tableName) throws SQLException {
Connection conn = ConnectionFactory.getConnect...
分类:
数据库 时间:
2015-06-11 16:58:48
阅读次数:
141
问题描述:
n个人站成一排,编号为1~n,现在从左向右报数“1,2,1,2.。。。”,报到1的人出列,报到2的人立即站到队伍的最后,如此循环往复,直到n个人全部出列为止。
public class LinkedQueue {
QueueHead qh = new QueueHead();
boolean empty() {
return qh.front ...
分类:
其他好文 时间:
2015-06-11 16:54:22
阅读次数:
76
Implement the following operations of a stack using queues.
push(x) -- Push element x onto stack.pop() -- Removes the element on top of the stack.top() -- Get the top element.empty() -- Return whet...
分类:
其他好文 时间:
2015-06-11 16:53:50
阅读次数:
93
废话少说直接上代码function add(x, y) { var total = x + y; alert(total); return total;}add(5,10);//15这里是会弹出来 15 的但是如果这样的add(2,3,4,5);这样调用会出现什么??答案是 5 (对,...
分类:
其他好文 时间:
2015-06-11 16:52:15
阅读次数:
78
01 'My Tracer', 'description' => 'MY tracer des', 'access callback' => true, 'page callback' => 'mytracer_admin', ); return...
分类:
其他好文 时间:
2015-06-11 16:30:50
阅读次数:
199
1 /** 2 * Created by zhouhaiou on 2015/6/10. 3 */ 4 5 6 // 封装获取id的方法 7 function $(id){ 8 return document.getElementById(id); 9 }10 11 // 封装获取...
分类:
Web程序 时间:
2015-06-11 16:24:45
阅读次数:
161
function add(x, y) { var total = x + y; return total;}add(5,10);关于函数的return 我一开始是认为没有什么用的 后来在项目中用到才发现还是有点用的 现在咱们思考一下var a= add(5,10);alert...
分类:
其他好文 时间:
2015-06-11 16:23:27
阅读次数:
84