Chinaunix首页 | 论坛 | 博客
  • 博客访问: 685779
  • 博文数量: 152
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 1793
  • 用 户 组: 普通用户
  • 注册时间: 2013-09-12 12:26
个人简介

相信自己,只有不想做的,没有做不到的。

文章分类

全部博文(152)

文章存档

2021年(1)

2015年(2)

2014年(74)

2013年(75)

发布时间:2013-10-31 22:17:51

arm-linux-g++ -Wl,-O1 -Wl,-rpath,/opt/qt-4.8.5-arm/lib -o SDKTest main.o    -L/opt/qt-4.8.5-arm/lib libfsdk.so -lQtGui -L/opt/tslib-1.4/lib -L/opt/qt-4.8.5-arm/lib -lQtNetwork -lQtCore -lpthread /home/guo/usr/local/arm/4.3.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.2/../../../../arm.........【阅读全文】

阅读(18031) | 评论(1) | 转发(0)

发布时间:2013-10-27 22:02:38

添加PATH环境变量,第1种方法:[root@lx_web_s1 ~]# export PATH=/usr/local/webserver/mysql/bin:$PATH再次查看:[root@lx_web_s1 ~]# echo $PATH         /usr/local/webserver/mysql/bin:/usr/local/webserver/mysql/bin/:/usr/kerberos/sbin:/usr/kerberos/b.........【阅读全文】

阅读(757) | 评论(0) | 转发(0)

发布时间:2013-10-27 21:54:56

#include <stdio.h>#include <stdlib.h>#define N 6//构建一个二叉树的结构体,数据,左孩子,右孩子typedef struct btree{int data;struct btree *lchild;struct btree *rchild;}BTREE;//创建一个二叉树的空节点,没有左右孩子BTREE *space_node(int data){BTREE *tree;tree = (BTREE *)malloc(sizeof(B.........【阅读全文】

阅读(4176) | 评论(0) | 转发(0)

发布时间:2013-10-27 21:33:38

#include <stdio.h>#include <stdlib.h>/**************************队列***********************/typedef struct {struct node *front;struct node *rear;}LinkQueue;LinkQueue *create_empty_queue(){struct node *head;LinkQueue *q;head = (struct node *)malloc(sizeof(struct node));hea.........【阅读全文】

阅读(930) | 评论(0) | 转发(0)

发布时间:2013-10-27 21:31:03

#include <stdio.h>#include <stdlib.h>/****************************栈*************************///栈头的类型typedef struct {//栈顶元素的位置struct node *top;//栈中元素的个数int n;}LinkStack;LinkStack *create_empty_stack(){LinkStack *s;s = (LinkStack *)malloc(sizeof(LinkStack.........【阅读全文】

阅读(882) | 评论(0) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册