摘要: #include #include #include typedef struct Node{ int coef;//系数 int exp;//指数 struct Node *next;}PolyNode;PolyNode *Creatpoly()//创建多项式的单链表,尾插法{ PolyNode *h,*p,*q; h=(PolyNode *)malloc(sizeof(PolyNode));//链表头结点 p=h; p->next=NULL; printf("please input the Polyomial coef & exp a,b,when input 0 阅读全文
posted @ 2014-04-09 21:57 楠楠IT 阅读(1166) 评论(0) 推荐(0) 编辑
摘要: hadoop@ubuntu:~$ cd hadoop-2.0.5-alpha/hadoop@ubuntu:~/hadoop-2.0.5-alpha$ lshadoop@ubuntu:~/hadoop-2.0.5-alpha$ sbin/start-yarn.shhadoop@ubuntu:~/hadoop-2.0.5-alpha$ cd etchadoop@ubuntu:~/hadoop-2.0.5-alpha/etc$ lshadoop@ubuntu:~/hadoop-2.0.5-alpha$ sbin/start-dfs.shhadoop@ubuntu:~/hadoop-2.0.5-alp 阅读全文
posted @ 2014-04-09 21:51 楠楠IT 阅读(360) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2014-04-09 15:33 楠楠IT 阅读(11) 评论(0) 推荐(0) 编辑