现在位置: 首页
+3°

国内的云主机

2014年04月22日 电脑相关, 虚拟主机  ⁄ 共 616字
又在纠结选择主机,主要是价格问题。关注知乎上这方面的回答,今天终于在知乎上找到了一些答案。有了新的思路。 之前我想买国外的VPS,可是口碑好的价格对于我来说简直就是天文数字。比方说http://www.linode.com/很想买,太贵了,知乎上的一些朋友还推荐买老鹰主机,也不错。可是这些都是国外的VPS,如果有什么问题,和老外交流很麻烦啊,还有就是需要信用卡支付,貌似还有美元呢~~ 今天看到http://www.zhihu.com/question/199...
阅读全文

+0°

二叉树基本问题

2014年04月21日 Code, 电脑相关  ⁄ 共 3218字
以验证复制可以运行 基本函数 [code] #include<stdio.h> #include<malloc.h> #define MaxSize 100 typedef char ElemType; typedef struct node { ElemType data; struct node *lchild; struct node *rchild; }BTNode; void CreateBTNode(BTNode *&b,char *str) { BTNode *St[MaxSize],*p=NULL; int top=-1,k,j=0; char ch; b=NULL; ch=str[j]; while(ch!='\0') { switch(ch) { case'(':top++;St[top]=p;k=1;br...
阅读全文
+0°

阿胜阿程伟哥三人

2014年04月20日 大学生活, 生活  ⁄ 共 0字
阅读全文
+0°

篮球英雄钱晓仔

2014年04月20日 大学生活, 生活  ⁄ 共 0字
阅读全文
+1°

钱老板投篮比赛

2014年04月20日 大学生活, 生活  ⁄ 共 0字
阅读全文
+0°

篮球英雄钱晓仔

2014年04月20日 大学生活, 生活  ⁄ 共 0字
阅读全文
+0°

徐州工程学院信电工程学院美女热舞

2014年04月20日 大学生活, 生活  ⁄ 共 0字
阅读全文
+3°

哈夫曼树

2014年04月20日 Code, 电脑相关  ⁄ 共 1741字
以验证可直接运行 [code lang="c"] #include <stdio.h> #include <string.h> #define N 50 //叶子结点数 #define M 2*N-1 //树中结点总数 typedef struct { char data[5]; //结点值 int weight; //权重 int parent; //双亲结点 int lchild; //左孩子结点 int rchild; //右孩子结点 }HTNode; typedef struct { char cd[N]; //存放哈夫曼码 int start; }HCode; /********构造哈夫曼树**********/ void CreateHT(HTNod...
阅读全文

                                                             Copyright © 2013-2024 顾建伟个人博客  保留所有权  苏ICP8888888 sitemap
×