首页 > 代码库 > 嵌入式菜鸟算法③---链表操作
嵌入式菜鸟算法③---链表操作
主要内容:链表头插法和尾差法
#include <stdio.h> #include <stdlib.h>//typedef int data; typedef struct node { char data; struct node* next; }linklist; /* method 1 insert node as first element */ linklist* CreateList1() { char ch; linklist *head, *p, *q; int i = 1; head = NULL; printf("Please input single char:\n"); scanf("\n%c", &ch); // if not add \n before %c or add behind it will be some error,i'm not know it yet while(ch != '#') { p = (linklist*)malloc(sizeof(linklist)); p->data = http://www.mamicode.com/ch;>
输出结果:
嵌入式菜鸟算法③---链表操作
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。