/*** use magic 0.31868386268616s* not use magic 0.11876797676086s*/class Test { private $varstr = "123"; function __get($name) { return $...
分类:
Web程序 时间:
2015-07-30 00:28:28
阅读次数:
139
Given a sorted integer array without duplicates, return the summary of its ranges.For example, given[0,1,2,4,5,7], return["0->2","4->5","7"]. 1 class ...
分类:
其他好文 时间:
2015-07-30 00:26:45
阅读次数:
160
??
简单题 只需检验每次下车钱数够不够即可 不够更新sum
#include
#include
#define N 1005
int a[N];
int cmp(const void *a,const void *b)
{return *(int *)a-*(int *)b;}
int main()
{
int n;
while(~scanf("%d",&n))
...
分类:
其他好文 时间:
2015-07-29 23:10:34
阅读次数:
138
#include
using namespace std;
class A
{
protected:
int m_data;
public:
A(int data = 0)
{
m_data = data;
}
int GetData()
{
return doGetData();
}
virtual int doGetData()
{
return m_data...
分类:
其他好文 时间:
2015-07-29 23:06:47
阅读次数:
161
模块/类(包)
创建一个名为Apple.pm的包文件(扩展名pm是包的缺省扩展名,意为Perl Module)。
一个模块就是一个类(包)。
new()方法
new()方法是创建对象时必须被调用的,它是对象的构造函数。
sub new
{
my $class = shift;
my $this = {};
bless $this, $class;
return...
分类:
其他好文 时间:
2015-07-29 23:00:29
阅读次数:
126
#include#includeint bug[2010],num[2010];int find(int x){int r=x;while(r!=bug[r])r=bug[r];bug[x]=r;return r;}void initial(){memset(bug,0,sizeof(bug));f...
分类:
其他好文 时间:
2015-07-29 22:44:57
阅读次数:
118
Given a binary tree, imagine yourself standing on the right side of it, return the values of the nodes you can see ordered from top to bottom.
For example:
Given the following binary tree,
1...
分类:
其他好文 时间:
2015-07-29 21:18:23
阅读次数:
93
Given a linked list, remove thenthnode from the end of list and return its head.For example, Given linked list: 1->2->3->4->5, and n = 2. After re...
分类:
其他好文 时间:
2015-07-29 21:02:12
阅读次数:
84
生产者与消费者,看下例: local?function?producer()
?????return?coroutine.create(
?????function(cookie)
??????????print("cookie?=?",cookie)
??????????local...
分类:
其他好文 时间:
2015-07-29 19:55:52
阅读次数:
131
#include<stdio.h>
intmain()
{
inta=0;
intarr[10]={0};
printf("%d\n",sizeof(a));//结果为4
printf("%d\n",sizeof(arr));//结果为40
printf("%d\n",sizeof(arr[0]));//结果为4
printf("%d\n",sizeof(arr[10]));//结果为4
printf("%d\n",sizeof(&arr));//结果为40
..
分类:
其他好文 时间:
2015-07-29 19:37:55
阅读次数:
107