数据结构(初阶 五)栈和队列的实现

一,栈

1.栈的概念及结构

  • 栈是一种特殊的线性表,只允许在固定的一段进行插入删除元素操作,进行数据插入和删除操作的一段称为栈顶,另一端称为栈底栈中的元素遵循后进先出(LIFO)的原则,
  • 压栈:栈的插入操作叫做进栈/压栈/入栈,入数据在栈顶
  • 出栈:栈的删除操作叫做出栈。出数据也在栈顶
    在这里插入图片描述

2. 栈的实现

栈的实现一般用数组或者链表,数组的结构实现更优一些,因为数组在尾上插图数据的代价比较小
在这里插入图片描述

1. 栈的定义

typedef int STDataType;
typedef struct Stack
{
    
    
	STDataType* a;
	int top;
	int capacity;
}ST;

2. 栈的初始化

void StackInit(ST* ps)
{
    
    
	assert(ps);
	ps->a = NULL;
	ps->top = ps->capacity = 0;
}

3. 栈的销毁

void StackDestroy(ST* ps)
{
    
    
	assert(ps);
	free(ps->a);
	ps->a = NULL;
	ps->capacity = ps->top = 0;
}

4. 插入元素

void StackPush(ST* ps, STDataType x)
{
    
    
	assert(ps);
	 //检查容量和扩容
	if (ps->top == ps->capacity)
	{
    
    
		int newCapacity = ps->capacity == 0 ? 4 : ps->capacity * 2;
		STDataType* tmp = (STDataType*)realloc(ps->a, newCapacity*sizeof(STDataType));
		if (tmp == NULL)
		{
    
    
			perror("realloc fail");
			exit(-1);
		}

		ps->a = tmp;
		ps->capacity = newCapacity;
	}

	ps->a[ps->top] = x;
	ps->top++;
}

5. 删除元素

void StackPop(ST* ps)
{
    
    
	assert(ps);
	assert(!StackEmpty(ps));
	
	--ps->top;
}

6. 取栈顶

STDataType StackTop(ST* ps)
{
    
    
	assert(ps);
	assert(!StackEmpty(ps));
	
	return ps->a[ps->top - 1];
}

7. 判断栈是否为空

bool StackEmpty(ST* ps)
{
    
    
	assert(ps);
	return ps->top == 0;
}

8. 计算栈的大小

int StackSize(ST* ps)
{
    
    
	assert(ps);
	return ps->top;
}

9. 测试函数

// 解耦 -- 低耦合 高内聚
// 数据结构建议不要直接访问结构数据,一定要通过函数接口访问
void TestStack()
{
    
    
	ST st;
	StackInit(&st);
	StackPush(&st, 1);
	StackPush(&st, 2);
	StackPush(&st, 3);
	printf("%d ", StackTop(&st));
	StackPop(&st);
	printf("%d ", StackTop(&st));
	StackPop(&st);

	StackPush(&st, 4);
	StackPush(&st, 5);
	
	//访问栈内所有数据
	while (!StackEmpty(&st))
	{
    
    
		printf("%d ", StackTop(&st));
		StackPop(&st);
	}
	printf("\n");
}


int main()
{
    
    
	TestStack();
	return 0;
}

二,队列

1. 队列的概念及结构

队列:只允许在一端插入数据,在另一端删除数据操作的特殊线性表,队列具有先进先出(FIFO)的特性。
入队列:进行插入操作的一端称为队尾
出队列:进行删除操作的一端称为队头
在这里插入图片描述

2. 队列的实现

队列可用数组和链表结构实现,使用链表结构实现更优一些,如果使用数组结构,出队列在数组头上出数据,效率比较低

1. 队列的定义

typedef int QDataType;
typedef struct QueueNode
{
    
    
	struct QueueNode* next;
	QDataType data;
}QNode;

typedef struct Queue
{
    
    
	QNode* head;
	QNode* tail;
	int size;
}Queue;

2. 队列的初始化

void QueueInit(Queue* pq)
{
    
    
	assert(pq);
	pq->head = pq->tail = NULL;
	pq->size = 0;
}

3. 队列的销毁

void QueueDestroy(Queue* pq)
{
    
    
	assert(pq);
	QNode* cur = pq->head;
	while (cur)
	{
    
    
		QNode* del = cur;
		cur = cur->next;
		free(del);
	}

	pq->head = pq->tail = NULL;
}

4. 尾插

void QueuePush(Queue* pq, QDataType x)
{
    
    
	assert(pq);

	QNode* newnode = (QNode*)malloc(sizeof(QNode));
	if (newnode == NULL)
	{
    
    
		perror("malloc fail");
		exit(-1);
	}
	else
	{
    
    
		newnode->data = x;
		newnode->next = NULL;
	}

	if (pq->tail == NULL)
	{
    
    
		pq->head = pq->tail = newnode;
	}
	else
	{
    
    
		pq->tail->next = newnode;
		pq->tail = newnode;
	}

	pq->size++;
}

5. 头删

void QueuePop(Queue* pq)
{
    
    
	assert(pq);
	assert(!QueueEmpty(pq));

	if (pq->head->next == NULL)
	{
    
    
		free(pq->head);
		pq->head = pq->tail = NULL;
	}
	else
	{
    
    
		QNode* del = pq->head;
		pq->head = pq->head->next;

		free(del);
		del = NULL;
	}

	pq->size--;
}

6. 取队头

QDataType QueueFront(Queue* pq)
{
    
    
	assert(pq);
	assert(!QueueEmpty(pq));

	return pq->head->data;
}

7. 取队尾

QDataType QueueBack(Queue* pq)
{
    
    
	assert(pq);
	assert(!QueueEmpty(pq));

	return pq->tail->data;
}

8. 判空

bool QueueEmpty(Queue* pq)
{
    
    
	assert(pq);

	return pq->head == NULL && pq->tail == NULL;
}

9. 计算队列大小

int QueueSize(Queue* pq)
{
    
    
	assert(pq);
	/*QNode* cur = pq->head;
	int n = 0;
	while (cur)
	{
		++n;
		cur = cur->next;
	}

	return n;*/
	return pq->size;
}

10. 测试函数

void TestQueue()
{
    
    
	Queue q;
	QueueInit(&q);
	QueuePush(&q, 1);
	QueuePush(&q, 2);
	QueuePush(&q, 3);

	printf("%d ", QueueFront(&q));
	QueuePop(&q);
	printf("%d ", QueueFront(&q));
	QueuePop(&q);
*
	QueuePush(&q, 4);
	QueuePush(&q, 4);
	QueuePush(&q, 4);

	while (!QueueEmpty(&q))
	{
    
    
		printf("%d ", QueueFront(&q));
		QueuePop(&q);
	}
	printf("\n");

	QueueDestroy(&q);
}

int main()
{
    
    
	TestQueue();

	return 0;
}

三, OJ练习

猜你喜欢

转载自blog.csdn.net/qq_45559559/article/details/126320456
今日推荐