“马云在进行一场豪赌”,我对我屌丝朋友说。
“你是说跟王健林1亿元的赌注吗,这事儿我知道,你真out”,朋友头也不抬地只顾着吃碗里的兰州拉面了。
“1亿也叫豪赌,你也太小看马云了”,我看了看我已经见底儿的拉面碗,拿起筷子迅速地从他碗里捞了一筷子拉面。
“靠,又抢我的,跟你出来吃饭就没吃饱过”,朋友端起碗迅速地往旁边躲。
“别躲,我跟你说个事儿,关于马云的O2O之路,那才算豪...
分类:
其他好文 时间:
2014-06-03 00:01:50
阅读次数:
319
jquery.scrollTo-min.js 用户返回顶部及动画到目的地,支持目标值、锚点。
使用方法:
1.引入jQuery
2.$.scrollTo( this.hash || targetValue, time);
example:$.scrollTo( this.hash || 0, 500);
jquery.scrollTo-min.js
; (functio...
分类:
Web程序 时间:
2014-06-01 10:56:16
阅读次数:
312
火星A+B
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 10288 Accepted Submission(s): 3409
Problem Description
读入两个不超过25位的火星正整数A和B...
分类:
其他好文 时间:
2014-06-01 10:33:27
阅读次数:
199
Children of the Candy Corn
Time Limit: 1000MS
Memory Limit: 65536K
Total Submissions: 9108
Accepted: 3958
Description
The cornfield maze is a popular Halloween treat....
分类:
其他好文 时间:
2014-06-01 10:28:57
阅读次数:
292
/*
**AVL平衡树插入例程
**2014-5-30 11:44:50
*/
avlTree insert(elementType X, avlTree T){
if(T == NULL){
T = malloc(sizeof(struct avlTree));
if(T == NULL) fatalError("Out of space!!!");
T->element = X...
分类:
其他好文 时间:
2014-06-01 09:50:16
阅读次数:
233
题目链接:点击打开链接
寒假安排
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 128000/64000 KB (Java/Others)
SubmitStatistic Next
Problem
Problem Description
寒假又快要到了,不过对于lzx来说,头疼的事又来了,因为众多的后...
分类:
其他好文 时间:
2014-06-01 09:43:08
阅读次数:
209
/******* 导出到excel
EXEC master..xp_cmdshell 'bcp SettleDB.dbo.shanghu out c:\temp1.xls -c -q -S"GNETDATA/GNETDATA" -U"sa" -P""'
/*********** 导入Excel
SELECT *
FROM OpenDataSource( 'Microsoft....
分类:
数据库 时间:
2014-06-01 09:14:39
阅读次数:
410
title:
The sum of the primes below 10 is 2 + 3 + 5 + 7 = 17.
Find the sum of all the primes below two million.
翻译:
10以下的质数的和为2 + 3 + 5 + 7 = 17。
请求出200,0000以下所有质数的和。
import math,time
d...
分类:
其他好文 时间:
2014-06-01 09:12:31
阅读次数:
239
Given a linked list, reverse the nodes of a linked list k at a time and return its modified list.
If the number of nodes is not a multiple of k then left-out nodes in the end should remain as it is...
分类:
其他好文 时间:
2014-06-01 09:05:42
阅读次数:
271
C语言实验——一元二次方程Ⅱ
Time Limit: 1 Sec Memory Limit: 64 MB
Submit: 169 Solved: 131
[Submit][Status][Web
Board]
Description
求一元二次方程ax2+bx+c=0的解。a,b,c为任意实数。
Input
输入数据有一行,包括a b c的值。
Outp...
分类:
编程语言 时间:
2014-05-31 22:30:00
阅读次数:
685