服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - C/C++ - C语言编写一个链表

C语言编写一个链表

2021-11-11 15:09两片空白 C/C++

这篇文章主要为大家详细介绍了C语言编写一个链表,文中安装步骤介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了C语言编写一个链表的具体代码,供大家参考,具体内容如下

链表

C语言编写一个链表

具备的基本功能:

1.创建头链表

struct Node* Creatlist(){//创建链表头
 struct Node *headnode = (struct Node*)malloc(sizeof(struct Node));//创建动态内存链表,指针变量
 headnode->next = NULL;//链表初始化
 return headnode;
}

2.创建节点

struct Node* Creatnode(int num){//创建结点,链表,参数数字域
 struct Node* newnode = (struct Node*)malloc(sizeof(struct Node));//创建动态内存链表,指针变量
 newnode->num = num;
 newnode->next = NULL;//链表初始化
 return newnode;
}

3.插入节点

C语言编写一个链表

void Insetlist(struct Node* list, int num){//头插法
 struct Node* insetnode = Creatnode(num);
 if (list != NULL){
  insetnode->next = list->next;
  list->next = insetnode;
 }
 else{
  printf("节点不存在
");
 }
}
void Insetlists(struct Node* headnode, int n, int num){//在n节点处插入,参数头节点,在第n个节点处插,插入的数据num
 int i = 1;
 struct Node *t = headnode;
 while (i < n&& t!= NULL){
  t = t->next;
  i++;
 }
 if (t != NULL){
  struct Node* insetnode = Creatnode(num);
  insetnode->next = t->next;
  t->next = insetnode;
 }
 else{
  printf("节点不存在
");
 }
}

4.修改节点

void Modifynode(struct Node* headnode, int n){//修改节点,参数链表,修改的第n个节点
 struct Node* list = headnode;
 int i = 0;
 while (i < n&&list != NULL){
  list = list->next;
  i++;
 }
 if (list != NULL){
  printf("请输入你要修改的值
");
  int j = 0;
  scanf("%d", &j);
  list->num = j;

 }
 else{
  printf("节点不存在
");
 }
}

5.删除节点

C语言编写一个链表

定义两个指针,一个指向删除节点的上一个节点,一个指向要删除的节点

void Deletnode(struct Node* headnode, int n){//删除第n个节点,
 int i = 1;
 struct Node *strat = headnode;
 struct Node *end = headnode->next;

 while (i < n&&end != NULL){
  strat = strat->next;
  end = end->next;
  i++;
 }
 if (end != NULL){
  strat->next = end->next;
  free(end);

 }
 else{
  printf("节点不存在
");
 }
}

6.打印节点

void Printnode(struct Node* headnode){//打印节点
 struct Node* list = headnode;
 while ((list->next) != NULL){
  list = list->next;
  printf("%d	",  list->num);
 }
 printf("
");

}

7.主函数

int main(){
 struct Node* list = Creatlist();

 Insetlists(list, 1, 1);
 Printnode(list);
 int i = 0;
 printf("请输入修改哪个节点
");
 scanf("%d", &i);
 Modifynode(list, i);
 Printnode(list);
 printf("请输入删除哪个节点
");
 int n = 0;
 scanf("%d", &n);
 Deletnode(list, n);
 Printnode(list);
 system("pause");
 return 0;
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/weixin_57023347/article/details/117224051

延伸 · 阅读

精彩推荐