经验总结
文章平均质量分 68
hegang1314
天生我材必有用!
展开
-
c语言中的qsort方法的使用
c语言类库中自带了快速排序算法qsort。用 法: void qsort(void *base,int nelem,int width,int (*fcmp)(const void *,const void *));参数:base(待排序数组首地址) nelem(数组中待排序元素数量) width(一个元素的占用空间大小) fcmp(指向函数的指针,用于确定排序的顺序)举例说明:原创 2013-04-06 19:52:27 · 3865 阅读 · 1 评论 -
linux环境下的gcc编译器与vc6.0环境的编译器
一、用scanf语句作为输入时,会在缓冲区中留下一个回车符,如果是第一次调用gets(s)函数,它会将这个回车符读入,导致s中只有一个回车符,而其他内容无法读取。1、vc6.0环境下的解决方法:在gets(s)之前加入fflush(stdin);用于清空缓冲区。2、linux环境下的gcc编译器解决方法:在gets(s)之前加入getchar();读回车符读取掉。二、结构体的定原创 2013-04-06 19:23:26 · 1531 阅读 · 0 评论 -
图的深度与广度遍历比较
图的深度与广度遍历总结如下:#include //引用队列结构#include //引用栈结构using namespace std;#define MAX_VERTEXS 5//结点总数queue q; //声明队列变量stack s; //声明栈变量bool visited[MAX_VERTEXS] ;//声明结点是否被访问数组,初始值为falseint p原创 2013-04-14 21:05:31 · 1106 阅读 · 0 评论 -
Install Hadoop on Ubuntu with two computers
This post is about the installation of Hadoop on Ubuntu with two computers. The system environment is Ubuntu 12.04, JDK 6, Hadoop 1.0.3. The information of two computers detail as follow:hos原创 2013-05-23 15:37:11 · 812 阅读 · 0 评论 -
The differences of Iterator and Iterable interface
This post will describe som differences of Iterator and Iterable interface. Introduction with three aspects is given out.Firstly, relative abstract method.Iterator interface:boolean hasNext(); /原创 2013-05-26 22:16:57 · 975 阅读 · 0 评论 -
Create Parent-Child Dimension with SSAS
This post is about parent-child dimension in ssas.In order to create parent-child dimension successfully, the parent's key and child's key must be save data type and the parent key should be relativ原创 2013-06-22 15:13:54 · 794 阅读 · 0 评论 -
MapReduce的核心资料索引
MapReduce的核心资料索引转自http://prinx.blog.163.com/blog/static/190115275201211128513868/和http://www.cnblogs.com/jie465831735/archive/2013/03/06.html按如下顺序看效果最佳: 1. MapReduce Simplied Data Proces转载 2013-07-17 16:22:29 · 10451 阅读 · 0 评论