Have we missed some critical information from
this article? Are you a company, organisation or research group operating in
this region and feel you wa...
分类:
其他好文 时间:
2014-05-28 04:06:31
阅读次数:
337
STL的堆操作STL里面的堆操作一般用到的只有4个:make_heap();、pop_heap();、push_heap();、sort_heap();他们的头文件函数是#include
首先是make_heap();他的函数原型是:void make_heap(first_pointer,end_...
分类:
其他好文 时间:
2014-05-28 02:15:50
阅读次数:
291
回文数是指这样的数字:正读和倒读都是一样的。如:595,2332都是回文数,234不是回文数。注意:负数不是回文数Determine whether an
integer is a palindrome. Do this without extra space.Some hints:Could ne...
分类:
其他好文 时间:
2014-05-27 23:44:17
阅读次数:
459
在一个业务类有下列属性private SchedulerFactoryBeanscheduler;
public SchedulerFactory BeangetScheduler() { return scheduler; } public void
setS...
分类:
编程语言 时间:
2014-05-27 23:38:16
阅读次数:
1397
在日程工作中经常会遇到这样的问题 一个JS数组 我们要找出其中
一些符合要求的类容又或者对数组里的类容求和求平均数之类的一般的做法是循环里面的类容做判断添加到一个新的集合里 var array = [];
array.push(1); array.push(2); array.push(3)...
分类:
编程语言 时间:
2014-05-26 19:15:53
阅读次数:
332
写了一个简单的C语言代码:#includeint main(){ int
a,b,c; a=1; b=2; c=a+b; printf("%d",c);}使用arm-linux-objdump -d 反汇编00000000 :
0: e92d4800 push {fp, lr} 4: e2...
分类:
其他好文 时间:
2014-05-26 18:27:17
阅读次数:
205
Determine whether an integer is a palindrome. Do
this without extra space.Some hints:Could negative integers be palindromes? (ie,
-1)If you are thinki...
分类:
其他好文 时间:
2014-05-26 18:07:52
阅读次数:
217
<?php
/*--------------------编写自己的缓存类---------------*/
class my_cache{
//定义有关变量
private $cache_time;//缓存有效时间
private $cache_file;//缓存文件保存路径
//初始化类,默认是index.html时间是1
function __construc...
分类:
Web程序 时间:
2014-05-25 21:54:23
阅读次数:
328
Zend Studio启动失败
启动zend studio; 弹出 failed to create the java virtual machine ;
解决办法:
在安装目录下 找到 ZendStudio.ini 文件;
打开;
以下是内容:
-startup
plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.wi...
分类:
其他好文 时间:
2014-05-25 21:52:41
阅读次数:
302
数组
var a=[1,2,3,4,5,6];
//a.shift(); //将数组第一个元素删除
//a.unshift(7,8); //将新数据从左到右插入到数组头部
//a.push(11,12); //将新数据从左到右插入到数组尾部
//a.pop(); //将数组最后一个元素删除
//a.splice(1,2); //删除:splice(起点, 长度) 在数组下标...
分类:
其他好文 时间:
2014-05-25 20:47:46
阅读次数:
200