- 博客(6)
- 资源 (4)
- 收藏
- 关注
原创 教你如何在UBUTNU中安装QT环境
1:首先下载QT的SDK,下载地址:http:点击打开链接2: 找到下载后的文件,将它移动自己的桌面上,我下载的版本是5.6.0,文件名为:qt-opensource-linux-x64-5.6.0 .run3:如果这个文件没有可执行权限,可以使用命令赋予可执行权限,命令为:chmod 777 /home/ld/桌面/qt-opensource-linux-x64-5.6.0 .run
2016-07-13 21:30:41 850
翻译 二叉树的创建,遍历,求高度,算出节点数,算出叶子节点数,左右子树的交换,二叉树的销毁。
//对二叉树的创建,遍历二叉树,求树的深度,求结点个数,求叶子结点个数#include #include typedef char ElemType; //定义树的结点类型 typedef struct BiTNode //树的结构体定义{ ElemType data; struct BiTNode *lchild; struct
2016-01-04 22:02:05 3546 2
翻译 不用加减法对两数进行相加
//不用加减乘除对两数进行相加add和add1都是进行两数相加;#include #include intadd(int op1,intop2); intmain() { printf("%d",add(10,3)); return 0; } intadd(int op1,intop2) { int su
2016-01-04 21:55:53 405
原创 用代码判断大小端
//检查CPU对操作数的存放方式:低字节到高字节为Little-enddian,高字节到低字节的为Big-endian;#includeintcheckCPU(){ union w { short a; char b; char d; }c; c.a=1; return(c.b==1); }
2016-01-04 21:51:59 862
转载 大数相乘
#include#includevoidreverseOrder(char* str,int p, int q){ char temp; while(p { temp= str[p]; str[p]= str[q]; str[q]= temp; p++; q--; }}c
2016-01-04 21:48:29 311
原创 c/c++常见的排序算法
//冒泡排序#includeusing namespace std;voidBubbleSort(int* pData,intcount){ int iTemp; for(inti=0;i for(intj=0;j { if(pData[j]>pData[j+1]) { iTem
2016-01-04 21:45:37 342
在Ubuntu下运行的局域网传输文件工具,程序环境是在QT4.8。
2017-05-19
局用程控交换机的编码转换
2016-01-06
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人