解题思路 文件 shu 是下面这样的。220 34 50 70553 556 32 211 1 14 98 33 文件 jian是下面这样的。1082 想要得到结果是下面这样的。210 24 40 60545 548 24 131 1 12 96 31 用awk来得到想要的结果 [root@loca ...
分类:
系统相关 时间:
2016-09-26 00:47:10
阅读次数:
260
var shu={name:'张三',age:20,gender:'男'};console.log(shu);function transform(obj) { var arr = []; for ( var item in obj) { arr.push(obj[item]); } return ...
分类:
编程语言 时间:
2016-08-20 13:05:38
阅读次数:
1008
http://www.jfox.info/bi-jiao-chang-jian-de-shu-ju-ku-sql-mian-shi-ti-yi-ji-da-an ...
分类:
数据库 时间:
2016-08-09 16:10:43
阅读次数:
143
'''import sys,time for i in range(50): sys.stdout.write("###") sys.stdout.flush() time.sleep(0.1) '''#“#”进度条 def liu (): """hai_shu_miao_shu""" print( ...
分类:
编程语言 时间:
2016-08-08 17:24:07
阅读次数:
177
int[] shu = new int[] { 1,2,3}; //二维数组 int [,] array = new int[4,2]; //4,表示有四个一维数组 //2,表示每一个一维数组有2个元素 int[,] shuzu = new int[,] { {1,2}, {3,4}, {5,6}, ...
分类:
其他好文 时间:
2016-07-30 08:02:13
阅读次数:
210
//int[] shu = new int[] { 1,2,3}; ////二维数组 //int [,] array = new int[4,2]; ////4,表示有四个一维数组 ////2,表示每一个一维数组有2个元素 //int[,] shuzu = new int[,] //{ //{1,2 ...
分类:
编程语言 时间:
2016-07-29 21:07:55
阅读次数:
544
学习参考自 http://spark-internals.books.yourtion.com/markdown/4-shuffleDetails.html 1. Shuffle read 边 fetch 边处理还是一次性 fetch 完再处理? 边 fetch 边处理。 MapReduce shu ...
分类:
其他好文 时间:
2016-06-16 20:16:27
阅读次数:
316
function shu(year,month,date){ var isRunnian = ((year % 4 0) && (year % 100 !== 0)) || (year % 400 0); var rules = [ 31, isRunnian ? 29 : 28, 31, 30, ...
分类:
其他好文 时间:
2016-06-16 01:30:03
阅读次数:
183
接口测试客户端:http://www.cnblogs.com/beetle-shu/p/4199755.html 淘宝top接口:AllPairs : http://www.cnblogs.com/sea520/p/4642226.html Ajax接口通用示例: http://www.cnblog ...
分类:
其他好文 时间:
2016-06-14 23:55:47
阅读次数:
192
1.Switch练习
#include
int main()
{
int shu_zi=0;
printf("请输入一个数:");
scanf("%d",&shu_zi);
switch(shu_zi%2)
{
case 0:
printf("结果为假\n");
break;
case 1:
printf("结果为真\n");
break;
default:
pri...
分类:
编程语言 时间:
2016-05-18 19:38:01
阅读次数:
201