先看下以下代码#includeusing namespace std;int x = 1;int
f1(){ x = 2; return x;}int f2(){ x = 3; return x;}int main(){ //Test1 cout
<< x << ...
分类:
其他好文 时间:
2014-05-10 01:07:57
阅读次数:
375
Given a linked list, reverse the nodes of a
linked listkat a time and return its modified list.If the number of nodes is not
a multiple ofkthen left-o...
分类:
其他好文 时间:
2014-05-09 12:00:21
阅读次数:
309
1 jQuery.fn.single_double_click =
function(single_click_callback, double_click_callback, timeout) { 2 return
this.each(function(){ 3 var clicks...
分类:
数据库 时间:
2014-05-08 20:54:46
阅读次数:
373
类别.h@interface
NSString(XXXXXX)-(NSInteger)getLen;@end.m@implementation
NSString(XXXXXX) -(NSInteger)getLen{ return
0;}@end//////////////////////////....
分类:
移动开发 时间:
2014-05-08 20:20:28
阅读次数:
365
function convert2Int(num) {num = parseInt(num);
return isNaN(num) ? 0 : num; } $(function () { var rows = $("...
分类:
Web程序 时间:
2014-05-06 09:38:17
阅读次数:
1838
1. exit用于结束正在运行的整个程序,它将参数返回给OS,把控制权交给操作系统;而return
是退出当前函数,返回函数值,把控制权交给调用函数。2. exit是系统调用级别,它表示一个进程的结束;而return 是语言级别的,它表示调用堆栈的返回。3.
在main函数结束时,会隐式地调用exi...
分类:
其他好文 时间:
2014-05-05 11:04:18
阅读次数:
302
BFS以及它的扩展,我发现栈是个很好用的数据结构,特别是对于顺序需要颠倒的时候!!!这里有个重要的信息:可以用null来标识一个level的结束!!!下面是AC代码:
1 /** 2 * Given a binary tree, return the bottom-up level ord...
分类:
其他好文 时间:
2014-05-05 09:46:06
阅读次数:
402
题目:Given an array of strings, return all groups of
strings that are anagrams.Note: All inputs will be in lower-case.class Solution
{public: vector ...
分类:
其他好文 时间:
2014-05-04 20:48:08
阅读次数:
608
js工具类的功能有:
1、去掉字符串前后空格
2、清空select
3、验证手机号
4、字符串转换int型数字
5、获取checkbox的选中的值
6、去掉左边的空白
7、去掉邮编的空白
源码如下:
/**
* 去掉字符串前后空格
*
* @param str
* @returns
*/
function trim(str){
return str.re...
分类:
Web程序 时间:
2014-05-04 18:50:51
阅读次数:
420
#include
#include
int main()
{
double k,m;
int T;
scanf("%d",&T);
while(T--)
{
scanf("%lf%lf",&k,&m);
int a=pow(10,log10(m)/k);
while(pow(a+1,k)<=m)
++a;
printf("%d\n",a);
}
return 0;
}...
分类:
其他好文 时间:
2014-05-04 18:44:58
阅读次数:
296