2.22 作业

顺序表

运行结果

fun.c

cs 复制代码
#include "fun.h"
seq_p create_seq_list()
{
	seq_p L = (seq_p)malloc(sizeof(seq_list));
	if(L==NULL)
	{
		printf("空间申请失败\n");
		return NULL;
	}
	L->len = 0;  
	bzero(L,sizeof(L->data)); 
	return L;
}
int seq_empty(seq_p L)
{
	if(L==NULL)
	{
		return -1; 
	}
	return L->len==0?1:0;
}

int seq_full(seq_p L)
{
	if(L==NULL)
	{
		return -1;  
	}
	return L->len==MAX?1:0;
}
void insert_head(seq_p L,int data)
{
	if(L==NULL)
	{
		printf("入参为空,请检查\n");
		return;
	}
	if(seq_full(L))
	{
		printf("表已满,不能插入\n");
		return;
	}
	for(int i=L->len-1;i>=0;i--)
	{
		L->data[i+1] = L->data[i];
	}

	L->data[0]=data;
	L->len++;  
}
void insert_tail(seq_p L,int value)
{
	if(L==NULL)
	{
		printf("入参为空,请检查\n");
		return;
	}
	if(seq_full(L))
	{
		printf("表已满,不能插入\n");
		return;
	}
	L->data[L->len]=value;
	L->len++;
}

void out_put(seq_p L)
{
	for(int i=0;i<L->len;i++)
	{
		printf("%d\n",L->data[i]);
	}
}

void insert_pos(seq_p L,int value,int pos)
{	
	if(L==NULL)
	{
		printf("入参为空,请检查\n");
		return;
	}
	if(seq_full(L))
	{
		printf("表已满,不能插入\n");
		return;
	}
	if(pos>L->len||pos<0)
	{
		printf("位置不合理");
		return;
	}
	for(int i=L->len-1;i>=pos;i--)
	{
		L->data[i+1]=L->data[i];
	}
	L->data[pos]=value;
	L->len++;
}

void del_pos(seq_p L,int pos)
{
	if(L==NULL)
	{
		printf("入参为空,请检查\n");
		return;
	}	
	if(seq_empty(L))
	{
		printf("表为空,无需删除\n");
		return;
	}
	for(int i=pos;i<L->len-1;i++)
	{
		L->data[i]=L->data[i+1];
	}
	L->len--;
}

void del(seq_p L)
{
	if(L==NULL){return;}
	if(seq_empty(L)){return;}
	if(L->len==1){printf("只有一个元素\n");return;}
	for(int i=0;i<L->len;i++)
	{
		for(int j=i+1;j<L->len;j++)
		{
			if(L->data[i]==L->data[j])
			{
				del_pos(L,j);
				j--;
			} 
		}
	}
}

fun.h

cs 复制代码
#ifndef __SEQ_LIST_H__
#define __SEQ_LIST_H__
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAX 7
typedef struct seq_list
{
	int data[MAX];
	int len;
}
seq_list,*seq_p;
seq_p create_seq_list();
int seq_empty(seq_p L);//判满
int seq_full(seq_p L);//判空
void insert_head(seq_p L,int data);//头插
void insert_tail(seq_p L,int value);//尾插
void out_put(seq_p L);//输出
void insert_pos(seq_p L,int value,int pos);//按下标插入
void del_pos(seq_p L,int pos);//按下标删除
void del(seq_p L);//去重
#endif

main.c

cs 复制代码
#include "fun.h"
int main()
{
	seq_p L = create_seq_list();
	insert_head(L,10);
	insert_head(L,20);
	insert_tail(L,20);
	insert_tail(L,30);
	out_put(L);
	putchar(10);
	insert_pos(L,50,2);
	out_put(L);
	putchar(10);
	del_pos(L,2);
	out_put(L);
	putchar(10);
	del(L);
	out_put(L);
	return 0;
}

链表

cs 复制代码
//尾插
void insert_tail(link_p H,link_p T,datatype data)
{
	if(T==NULL)
	{
		printf("入参为空,请检查\n");
		return;
	}
	link_p new = create_node(data);
	T->next=new;
	H->len++
}
//输出
void out_put(link_p H)
{
	for(int i=0;i<H->len;i++)
	{
		printf("%d\n",(H->next)->data);
		H->next=(H->next)->next;
	}
}
相关推荐
Theodore_10222 小时前
4 设计模式原则之接口隔离原则
java·开发语言·设计模式·java-ee·接口隔离原则·javaee
冰帝海岸3 小时前
01-spring security认证笔记
java·笔记·spring
世间万物皆对象3 小时前
Spring Boot核心概念:日志管理
java·spring boot·单元测试
没书读了4 小时前
ssm框架-spring-spring声明式事务
java·数据库·spring
----云烟----4 小时前
QT中QString类的各种使用
开发语言·qt
lsx2024064 小时前
SQL SELECT 语句:基础与进阶应用
开发语言
小二·4 小时前
java基础面试题笔记(基础篇)
java·笔记·python
开心工作室_kaic4 小时前
ssm161基于web的资源共享平台的共享与开发+jsp(论文+源码)_kaic
java·开发语言·前端
向宇it4 小时前
【unity小技巧】unity 什么是反射?反射的作用?反射的使用场景?反射的缺点?常用的反射操作?反射常见示例
开发语言·游戏·unity·c#·游戏引擎
懒洋洋大魔王4 小时前
RocketMQ的使⽤
java·rocketmq·java-rocketmq