class CArray { private int[] arr;
//声明了一私有个数组,并没有实例化,数组只有引用地址(只在栈内存中存在) private int upper; //声明私有变...
分类:
其他好文 时间:
2014-04-30 05:03:55
阅读次数:
354
第一阶段 第一讲,WEB基础 1.1 网站基本知识;1.2 网络协议介绍;1.3
B/S与C/S结构的区别;1.4 WEB编程、网站开发技术介绍。 第二讲,网页设计 2.1 Dreamweaver介绍及使用;2.2
静态网页HTML语言;2.3 标题与段落,换行与分割线;2.4 表格、表单;2.5....
分类:
Web程序 时间:
2014-04-30 03:40:34
阅读次数:
678
通过给Eclipse安装Yeti 2 - TinyOS 2 Plugin for
Eclipse来配置TinyOS IDE,从而可建立TinyOS Project Yeti
2的介绍请参考网站:http://tos-ide.ethz.ch/wiki/pmwiki.php?n=Site.Tiny...
分类:
系统相关 时间:
2014-04-30 03:24:11
阅读次数:
568
题目: Given an array of integers, find two numbers
such that they add up to a specific target number. The function twoSum should
return indices of the t...
分类:
其他好文 时间:
2014-04-30 03:20:07
阅读次数:
502
Given preorder and inorder traversal of a tree,
construct the binary tree.Note:You may assume that duplicates do not exist in
the tree.思路:由前序遍历数组和中序遍历...
分类:
其他好文 时间:
2014-04-30 02:20:33
阅读次数:
366
如果我们运行php时发现缺少某个库,在windows环境下很简单,找到.dll
对应的库文件,然后拷贝到 extension 目录下,然后在php.ini 里 去掉 前面的分号或者 追加一行 extension = XXXX.dll
即可。linux环境下,可不是像windows环境下那么的简单。下...
分类:
Web程序 时间:
2014-04-30 01:49:44
阅读次数:
670
1 function getRealIp() { 2 if
(getenv("HTTP_CLIENT_IP") && strcasecmp(getenv("HTTP_CLIENT_IP"),
"unknown")) 3 $ip = getenv("HTTP_C...
分类:
Web程序 时间:
2014-04-30 01:42:33
阅读次数:
422
Jump GameGiven an array of non-negative
integers, you are initially positioned at the first index of the array.Each
element in the array represents yo...
分类:
其他好文 时间:
2014-04-28 11:30:27
阅读次数:
551
由于数组具有属性单一,长度不可改变的缺点,于是在程序中我们使用集合来代替它。集合中不可放入基本数据类型,基本数据类型都是通过自动拆包和自动装箱功能才能放入和取出集合。分类:Collection接口和Map接口Collection:存放单一值元素,又可分为list接口类型和set接口类型
...
分类:
编程语言 时间:
2014-04-28 11:20:31
阅读次数:
582