码迷,mamicode.com
首页 >  
搜索关键字:big data 大數據 決策    ( 64947个结果
【C#】浏览器源代码
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
分类:其他好文   时间:2014-05-26 00:40:38    阅读次数:214
【C#】简单计算器源代码
form1.cs using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using Syst...
分类:其他好文   时间:2014-05-26 00:25:36    阅读次数:336
如何阅读论文
:-(,好久没写博客了,原因也很多,就不赘述了。直接开始翻译今天下午阅读的文章:如何阅读论文。之所以写这个,因为我看完之后感觉有点启发,自己之前阅读论文确实存在这个问题。先给出链接:http://blizzard.cs.uwaterloo.ca/keshav/home/Papers/data/07/...
分类:其他好文   时间:2014-05-26 00:13:25    阅读次数:304
广度优先遍历二叉树
?? // //广度优先遍历二叉树 // //从一个顶点开始,识别所有可到达顶点 // //的方法叫作广(宽)度优先搜索,这种 // //搜索可使用队列来实现 typedef struct binarytree { EleType data; struct binarytree *LeftChild; struct binarytree *RightChild...
分类:其他好文   时间:2014-05-25 18:25:35    阅读次数:316
acd LCM Challenge(求1~n的任意三个数的最大公倍数)
Problem Description Some days ago, I learned the concept of LCM (least common multiple). I've played with it for several times and I want to make a big number with it. But I also don't want to use...
分类:其他好文   时间:2014-05-25 16:39:53    阅读次数:266
ACdream1077:LCM Challenge
Problem Description Some days ago, I learned the concept of LCM (least common multiple). I've played with it for several times and I want to make a big number with it. But I also don't want to use...
分类:其他好文   时间:2014-05-25 16:32:49    阅读次数:214
链队列的c语言实现
1.链队列结构 typedef struct QNode /* 结点结构 */ { QElemType data; struct QNode *next; }QNode,*QueuePtr; typedef struct /* 队列的链表结构 */ { QueuePtr front,rear; /* 队头、队尾指针 */ }LinkQueue;...
分类:编程语言   时间:2014-05-25 10:25:15    阅读次数:325
MySQL bug:server-id默认被自动置为1
昨天同事在做主从时,从库报如下错误:Got fatal error 1236 from master when reading data from binary log: 'Misconfigured master - server id was not set'粗粗看好像是master的server-id没有设置,但同事做如下查询:备库采集: root@localhost Fri May 23 ...
分类:数据库   时间:2014-05-25 09:57:24    阅读次数:330
Linux递归解压缩一个文件夹下的所有文件
gunzip -r hongchangfirst/data 如何递归删除那些剩余的非log结尾的文件? 先列出确认一下: find hongchangfirst/data -type f ! -name "*.log" 然后真正的删除: find hongchangfirst/data -type f ! -name "*.log" -exec rm -f {} \;...
分类:系统相关   时间:2014-05-25 09:41:05    阅读次数:694
顺序循环队列的c语言实现
1. 循环队列的顺序存储结构 typedef struct { QElemType data[MAXSIZE]; int front; /* 头指针 */ int rear; /* 尾指针,若队列不空,指向队列尾元素的下一个位置 */ }SqQueue; 2. 初始化一个空队列Q Status InitQueue(SqQueue *Q) { Q->fr...
分类:编程语言   时间:2014-05-25 04:43:05    阅读次数:407
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!