栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C#

c++动态链表的基础操作

C/C++/C# 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

c++动态链表的基础操作

基本定义 节点的定义:
struct node{
	typename data;
	node* next;
};
申请动态空间
int* p = new int;
node* p = new node;
释放内存
delete(p);
链表的基本操作 创建链表
#include 
struct node{
	int data;
	node* next;
}
node* create(int array[]){
	node *p, *pre, *head;
	head = new node;
	head.next = NULL;
	pre = head;
	for(int i = 0; i < 5; i++){
		p = new node;
		p->data = array[i];
		p->next = NULL;
		pre->next = p;
		pre = p;
	}
	return head;
}
int main(){
	int array[5] = {5,3,6,1,2};
	node* L = create(array);
	while(L != NULL){
		printf("%d",L->data);
		L = L->next;
	}
	return 0;
}

查找元素
int search(node* head, int x){
	int count = 0;
	node* p = head->next;
	while(p != NULL){
		if(p->data==x) count++;
		p = p->next;
	}
	return count;
}
插入元素
void(node* head, int pos, int x){
	node* p = head;
	for(int i = 0; i < pos -1; i++){
		p = p->next;
	}
	node* q = new node;
	q->data = x;
	q->next = p->next;
	p->next = q;
}
删除元素
void del(node* head, int x){
	node* p = head->next;
	node* pre = head;
	while(p != NULL){
		if(p->data == x){
			pre->next = p->next;
			delete(p);
			p = pre->next;
		}else{
			pre = p;
			p = p->next;
		}
	}
}
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/384759.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号