摘要:
单链表节点的查找查找单链表pos位置的节点,返回节点指针pos从0开始,0返回head节点node *search_node(node *head,int pos){node *p=head->next;if(posnext)==NULL){printf("incorrect position to search node\n");break;}}return p;} 阅读全文
摘要:
计算单链表的长度计算单链表的长度,实现单链表的打印实现单链表的建立链表节点的定义:typedef struct node{int data;//节点内容node *next;//下一个节点}创建单链表node *Create(){int i=0;//链表中数据个数node *head,*p,*q;int x=0;head=(node*)malloc(sizeof(node));//创建头结点while(1){printf("input the data:");scanf("%d",&x);if(x==0)break;//Data为0时创建结束p= 阅读全文
摘要:
实现单链表的建立链表节点的定义:typedef struct node{int data;//节点内容node *next;//下一个节点}创建单链表node *Create(){int i=0;//链表中数据个数node *head,*p,*q;int x=0;head=(node*)malloc(sizeof(node));//创建头结点while(1){printf("input the data:");scanf("%d",&x);if(x==0)break;//Data为0时创建结束p=(node*)malloc(sizeof(node 阅读全文
摘要:
wxWidgets和Codeblocks的编译安装,GUI程序开发平台的搭建具体步骤如下:(1)基本编译环境安装安装编译工具(gcc之类)sudo apt-get install build-essential安装X11sudo apt-get install libx11-dev安装GTK需要的东西sudo apt-get install?gnome-core-devel(2)下载wxWidgets源码包并解压缩到 #{wxdir}(3)创建基于gtk和x11的编译目录${wx}mkdir ${wx}/buildgtkmkdir ${wx}/buildx11(4)编译wxgtkcd ${wx 阅读全文