1 Star 0 Fork 0

zhuo.meng/paixu

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
未命名1.cpp 915 Bytes
一键复制 编辑 原始数据 按行查看 历史
mengjoy 提交于 2018-03-17 16:57 . 排序,去重
#include<stdio.h>
#include<stdlib.h>
#include<iostream>
using namespace std;
typedef struct Node{
int data;
struct Node* next;
}Elem;
//创建
Elem* create(int a[],int n){
Elem* head,*p,*t;
head=(Elem*)malloc(sizeof(Elem));
p=head;
head->data=a[0];
head->next=NULL;//创建头结点
for(int i=1;i<n;i++){
t=(Elem*)malloc(sizeof(Elem));
t->next=NULL;
t->data=a[i];
p->next=t;
p=p->next;
}
return head;
}
//遍历
void printflink(Elem* head){
Elem* p;
for(p=head;p;p=p->next){
cout<<p->data<<endl;
}
}
//删除
Elem* deletelink(int key,Elem* head) {
Elem *p,*q;
for(p=head;p&&p->data!=key;q=p,p=p->next);
if(p){
if(p!=head){
q->next=p->next;
}else{
head=head->next;
}
free(p);
}
return head;
}
//插入
int main(void)
{
int a[6]={1,2,3,4,5,6};
Elem* head=create(a,6);
printflink(head);
Elem * b=deletelink(3,head);
printflink(b);
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhuomeng/paixu.git
git@gitee.com:zhuomeng/paixu.git
zhuomeng
paixu
paixu
master

搜索帮助