隊列-鏈式存儲

来源:https://www.cnblogs.com/hujunxiang98/archive/2020/05/13/12884875.html
-Advertisement-
Play Games

鏈表實現隊列 創建3個文件:queueLinked.h、queueLinked.c、queueLinkedTest.c queueLinked.h c include include include include "queueLinked.h" // 功能: 列印錯誤信息後就錯誤退出程式. // ...


鏈表實現隊列




創建3個文件:queueLinked.h、queueLinked.c、queueLinkedTest.c




queueLinked.h
#ifndef QUEUE_LINKED_H_
#define QUEUE_LINKED_H_

#ifdef __GNUC__
	#define DEPRECATED __attribute__( (deprecated) )
#elif defined(_MSC_VER)
	#define DEPRECATED __declspec( deprecated )
#else
	#define DEPRECATED
#endif

#ifndef PTOI
	#define PTOI( p ) ((int32_t)(int64_t)(p))
#endif
#ifndef ITOP
	#define ITOP( i ) ((void *)(int64_t)(i))
#endif

#define ADT QueueLinked

// 功能: a與b的比較過程.
// 參數: a, b.
// 返回: a>b返回正數, a<b返回負數, 否則返回0.
// 註意: a不為NULL且b為NULL,返回正數, a為NULL且b不為NULL,返回負數, a與b都為NULL,返回0.
typedef int ( CompareFunc )( const void *a, const void *b );

typedef struct NodeQueueLinked QueueLinked;

// 功能: 創建新的隊列.
// 參數: 無.
// 返回: 新的隊列.
// 註意: 當記憶體分配失敗時,將錯誤退出程式.
extern ADT *newQueueLinked( void );

// 功能: 將用戶數據加入到隊尾.
// 參數: queue(隊列對象的指針), data(用戶數據).
// 返回: 被加入到隊尾的用戶數據.
// 註意: 當 queue 為NULL 時, 將錯誤退出程式.
extern void *addQueueLinked( ADT *queue, void *data );

// 功能: 將用戶數據加入到隊頭.
// 參數: queue(隊列對象的指針), data(用戶數據).
// 返回: 被加入到隊頭的用戶數據.
// 註意: 當 queue 為NULL 時, 將錯誤退出程式.
extern void *addHeadQueueLinked( ADT *queue, void *data );

// 功能: 移除隊頭用戶數據.
// 參數: queue(隊列對象的指針).
// 返回: 被移除的隊頭的用戶數據.
// 註意: 當 queue 為NULL 或 空隊列狀態 時, 將錯誤退出程式.
extern void *pollQueueLinked( ADT *queue );

// 功能: 移除隊尾用戶數據.
// 參數: queue(隊列對象的指針).
// 返回: 被移除的隊尾的用戶數據.
// 註意: 當 queue 為NULL 或 空隊列狀態 時, 將錯誤退出程式.
extern void *pollTailQueueLinked( ADT *queue );

// 功能: 偷看隊頭的用戶數據.
// 參數: queue(隊列對象的指針).
// 返回: 隊頭的用戶數據.
// 註意: 當 queue 為NULL 或 空隊列狀態 時, 將錯誤退出程式.
extern void *peekQueueLinked( ADT *queue );

// 功能: 偷看隊尾的用戶數據.
// 參數: queue(隊列對象的指針).
// 返回: 隊尾的用戶數據.
// 註意: 當 queue 為NULL 或 空隊列狀態 時, 將錯誤退出程式.
extern void *peekTailQueueLinked( ADT *queue );

// 功能: 隊列中所有用戶數據中是否包含了data.
// 參數: queue(隊列對象的指針), data(需查找的用戶數據), cmp(比較函數的指針).
// 返回: 包含data返回1, 否則返回0.
// 註意: 當 queue 為NULL 或 cmp 為NULL 時, 將錯誤退出程式.
extern int existQueueLinked( ADT *queue, void *data, CompareFunc *cmp );

// 功能: 從隊頭至隊尾方向查找data.
// 參數: queue(隊列對象的指針), data(需查找的用戶數據), cmp(比較函數的指針).
// 返回: 包含data, 返回data所在位置, 否則返回-1.
// 註意: 當 queue 為NULL 或 cmp 為NULL 時, 將錯誤退出程式.
extern int32_t findQueueLinked( ADT *queue, void *data, CompareFunc *cmp );

// 功能: 從隊尾至隊頭方向查找data.
// 參數: queue(隊列對象的指針), data(需查找的用戶數據).
// 返回: 包含data, 返回data所在位置, 否則返回-1, cmp(比較函數的指針).
// 註意: 當 queue 為NULL 或 cmp 為NULL 時, 將錯誤退出程式.
extern int32_t findTailQueueLinked( ADT *queue, void *data, CompareFunc *cmp );

// 功能: 隊列實際已使用大小.
// 參數: queue(隊列對象的指針).
// 返回: 隊列實際已使用大小.
// 註意: 當 queue 為NULL 時, 將錯誤退出程式.
extern int32_t sizeQueueLinked( ADT *queue );

// 功能: 空隊列狀態.
// 參數: queue(隊列對象的指針).
// 返回: 是空隊列返回1, 否則返回0.
// 註意: 當 queue 為NULL 時, 將錯誤退出程式.
extern int emptyQueueLinked( ADT *stsack );

// 功能: 反轉隊列.
// 參數: queue(隊列對象的指針).
// 返回: 無.
// 註意: 當 queue 為NULL 時, 將錯誤退出程式.
extern void reversalQueueLinked( ADT *queue );

// 功能: 滿隊列狀態.
// 參數: queue(隊列對象的指針).
// 返回: 是滿隊列返回1, 否則返回0.
// 註意: 當 queue 為NULL 時, 將錯誤退出程式.
// 被棄用的函數.
extern DEPRECATED int fullQueueLinked( ADT *queue );

// 功能: 隊列最大容量.
// 參數: queue(隊列對象的指針).
// 返回: 隊列最大容量.
// 註意: 當 queue 為NULL 時, 將錯誤退出程式.
// 被棄用的函數.
extern DEPRECATED int32_t capacityQueueLinked( ADT *queue );

// 功能: 清空隊列.
// 參數: queue(隊列對象的指針).
// 返回: 無.
// 註意: 當 queue 為NULL 時, 將錯誤退出程式.
extern void clearQueueLinked( ADT *queue );

// 功能: 銷毀隊列.
// 參數: queue(存放隊列對象的指針的指針).
// 返回: 無.
// 註意: 當 queue 為NULL 時, 將錯誤退出程式.
extern void delQueueLinked( ADT **queue );

#undef ADT

#endif

queueLinked.c
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include "queueLinked.h"

// 功能: 列印錯誤信息後就錯誤退出程式.
// 參數: expression(錯誤判斷表達式), message(需列印的錯誤信息).
// 返回: 無.
// 註意: 當expression為真時,才觸發.
#define ERROR_EXIT( expression, message )                 \
if( (expression) ) {                                      \
	fprintf( stderr, "\nerror location: %s, %s, %u.\n",   \
	                 __FILE__, __func__, __LINE__ );      \
	fprintf( stderr, "error message: %s.\n",              \
	                 !(message) ? __func__ : (message) ); \
	exit( EXIT_FAILURE );                                 \
}

#define MAX( a, b ) ((a) > (b) ? (a) : (b))

#define ADT QueueLinked

typedef struct NodeQueueLinked {
	void *data;
	struct NodeQueueLinked *prev; // 隊列頭結點的prev指向隊頭.
	struct NodeQueueLinked *next; // 隊列頭結點的next指向隊尾.
} Node;

ADT *newQueueLinked( void ) {
	ADT *queue = NULL;

	queue = calloc( sizeof(*queue), 1 );
	ERROR_EXIT( !queue, NULL );

	return queue;
}

void *addQueueLinked( ADT *queue, void *data ) {
	Node *n = NULL;

	ERROR_EXIT( !queue, NULL );
	n = malloc( sizeof(*n) );
	ERROR_EXIT( !n, NULL );
	n->data = data;
	n->prev = NULL;
	n->next = queue->next;
	if( queue->next != NULL ) {
		queue->next->prev = n;
	}
	queue->prev = !queue->prev ? n : queue->prev;
	queue->next = n;
	queue->data = ITOP( PTOI( queue->data ) + 1 );

	return data;
}

void *addHeadQueueLinked( ADT *queue, void *data ) {
	Node *n = NULL;

	ERROR_EXIT( !queue, NULL );
	n = malloc( sizeof(*n) );
	ERROR_EXIT( !n, NULL );
	n->data = data;
	n->prev = queue->prev;
	n->next = NULL;
	if( queue->prev != NULL ) {
		queue->prev->next = n;
	}
	queue->prev = n;
	queue->next = !queue->next ? n : queue->next;
	queue->data = ITOP( PTOI( queue->data ) + 1 );

	return data;
}

void *pollQueueLinked( ADT *queue ) {
	void *data = NULL;
	Node *n = NULL;

	ERROR_EXIT( !queue || PTOI( queue->data ) < 1, NULL );
	n = queue->prev;
	if( n->prev != NULL ) {
		n->prev->next = NULL;
	}
	queue->prev = n->prev;
	queue->next = n != queue->next ? queue->next : NULL;
	queue->data = ITOP( PTOI( queue->data ) - 1 );
	data = n->data;
	free( n );

	return data;
}

void *pollTailQueueLinked( ADT *queue ) {
	void *data = NULL;
	Node *n = NULL;

	ERROR_EXIT( !queue || PTOI( queue->data ) < 1, NULL );
	n = queue->next;
	if( n->next != NULL ) {
		n->next->prev = NULL;
	}
	queue->prev = n != queue->prev ? queue->prev : NULL;
	queue->next = n->next;
	queue->data = ITOP( PTOI( queue->data ) - 1 );
	data = n->data;
	free( n );

	return data;
}

void *peekQueueLinked( ADT *queue ) {
	ERROR_EXIT( !queue || PTOI( queue->data ) < 1, NULL );

	return queue->prev->data;
}

void *peekTailQueueLinked( ADT *queue ) {
	ERROR_EXIT( !queue || PTOI( queue->data ) < 1, NULL );

	return queue->next->data;
}

int existQueueLinked( ADT *queue, void *data, CompareFunc *cmp ) {
	Node *n = NULL;

	ERROR_EXIT( !queue || !cmp, NULL );
	for( n = queue->prev; n != NULL; n = n->prev ) {
		if( !cmp( n->data, data ) ) {
			return 1;
		}
	}

	return 0;
}

int32_t findQueueLinked( ADT *queue, void *data, CompareFunc *cmp ) {
	Node *n = NULL;
	int32_t i = 0;

	ERROR_EXIT( !queue || !cmp, NULL );
	for( n = queue->prev; n != NULL; n = n->prev ) {
		if( !cmp( n->data, data ) ) {
			return PTOI( queue->data ) - 1 - i;
		}
		++i;
	}

	return -1;
}

int32_t findTailQueueLinked( ADT *queue, void *data, CompareFunc *cmp ) {
	Node *n = NULL;
	int32_t i = 0;

	ERROR_EXIT( !queue || !cmp, NULL );
	for( n = queue->next; n != NULL; n = n->next ) {
		if( !cmp( n->data, data ) ) {
			return i;
		}
		++i;
	}

	return -1;
}

int32_t sizeQueueLinked( ADT *queue ) {
	ERROR_EXIT( !queue, NULL );

	return PTOI( queue->data );
}

int emptyQueueLinked( ADT *queue ) {
	ERROR_EXIT( !queue, NULL );

	return PTOI( queue->data ) < 1;
}

void reversalQueueLinked( ADT *queue ) {
	Node *p1 = NULL, *p2 = NULL, *p3 = NULL;

	ERROR_EXIT( !queue, NULL );
	queue->prev = queue->next;
	for( p1 = NULL, p2 = queue->next; p2 != NULL; p2 = p3 ) { // 三指針法反轉鏈表.
		p3 = p2->next;
		p2->prev = p3;
		p2->next = p1;
		p1 = p2;
	}
	queue->next = p1;
}

int fullQueueLinked( ADT *queue ) {
	ERROR_EXIT( !queue, NULL );

	return 0;
}

int32_t capacityQueueLinked( ADT *queue ) {
	ERROR_EXIT( !queue, NULL );

	return INT32_MAX;
}

void clearQueueLinked( ADT *queue ) {
	Node *current = NULL, *prev = NULL;

	ERROR_EXIT( !queue, NULL );
	for( current = queue->prev; current != NULL; current = prev ) {
		prev = current->prev;
		free( current );
	}
	queue->data = ITOP( 0 );
}

void delQueueLinked( ADT **queue ) {
	Node *current = NULL, *prev = NULL;

	ERROR_EXIT( !queue, NULL );
	if( !queue ) {
		return;
	}
	for( current = queue[0]->prev; current != NULL; current = prev ) {
		prev = current->prev;
		free( current );
	}
	free( *queue );
	*queue = NULL;
}

queueLinkedTest.c
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <time.h>
#include "queueLinked.h"

// a>b返回正數, a<b返回負數, 否則返回0.
static int cmp( const void *a, const void *b ) {
	return *(int32_t *) a - *(int32_t *) b;
}

int main( int argc, char *argv[] ) {
	char *tf[] = {"false", "true"};
	int32_t *a = NULL, n = 0;
	int32_t i = 0, k = 0;
	QueueLinked *q = NULL;

	srand( time( NULL ) );
	printf( "please input array length: n = " );
	scanf( "%d%*c", &n );
	printf( "\n" );

	a = malloc( sizeof(*a) * n );
	for( i = 0; i < n; ++i ) {
		a[i] = rand() % 322;
		//a[i] = 1;
	}

	printf( "&q = %p, q = %p\n", &q, q );
	q = newQueueLinked();
	printf( "new: &q = %p, q = %p\n", &q, q );

	printf( "peek       = %d\n", emptyQueueLinked( q ) ? INT32_MIN : *(int32_t *) peekQueueLinked( q ) );
	printf( "peekTail = %d\n", emptyQueueLinked( q ) ? INT32_MIN : *(int32_t *) peekTailQueueLinked( q ) );
	printf( "size     = %d\n", sizeQueueLinked( q ) );
	printf( "empty = %s\n", tf[emptyQueueLinked( q )]);
	printf( "\n" );

	for( i = 0; i < n; ++i ) {
		#if 1
		printf( "add: %4d\n", *(int32_t *) addQueueLinked( q, &a[i] ) );
		#else
		printf( "addHead: %4d\n", *(int32_t *) addHeadQueueLinked( q, &a[i] ) );
		#endif
	}
	printf( "\n" );

	printf( "peek       = %d\n", emptyQueueLinked( q ) ? INT32_MIN : *(int32_t *) peekQueueLinked( q ) );
	printf( "peekTail = %d\n", emptyQueueLinked( q ) ? INT32_MIN : *(int32_t *) peekTailQueueLinked( q ) );
	printf( "size     = %d\n", sizeQueueLinked( q ) );
	printf( "empty = %s\n", tf[emptyQueueLinked( q )] );
	printf( "\n" );

	k = a[0];
	//k = rand();
	//printf( "exist &k(%d) = %s\n", k, tf[existQueueLinked( q, &k, cmp )] );
	printf( "\n" );

	k = a[0];
	printf( "add: %d\n", *(int32_t *) addQueueLinked( q, &k ) );
	//k = rand();
	printf( "find &k(%d) = %d\n", k, findQueueLinked( q, &k, cmp ) );
	printf( "\n" );

	k = a[0];
	//k = rand();
	printf( "add: %d\n", *(int32_t *) addQueueLinked( q, &k ) );
	printf( "findTile &k(%d) = %d\n", k, findTailQueueLinked( q, &k, cmp ) );
	printf( "\n" );

	//reversalQueueLinked( q ); // 反轉隊列.

	while( !emptyQueueLinked( q ) ) {
		#if 1
		printf( "poll: %4d\n", *(int32_t *) pollQueueLinked( q ) );
		#else
		printf( "pollTail: %4d\n", *(int32_t *) pollTailQueueLinked( q ) );
		#endif
		printf( "peek       = %d\n", emptyQueueLinked( q ) ? INT32_MIN : *(int32_t *) peekQueueLinked( q ) );
		printf( "peekTail = %d\n", emptyQueueLinked( q ) ? INT32_MIN : *(int32_t *) peekTailQueueLinked( q ) );
		printf( "size     = %d\n", sizeQueueLinked( q ) );
		printf( "\n" );
	}
	printf( "\n" );

	printf( "peek       = %d\n", emptyQueueLinked( q ) ? INT32_MIN : *(int32_t *) peekQueueLinked( q ) );
	printf( "peekTail = %d\n", emptyQueueLinked( q ) ? INT32_MIN : *(int32_t *) peekTailQueueLinked( q ) );
	printf( "size     = %d\n", sizeQueueLinked( q ) );
	printf( "empty = %s\n", tf[emptyQueueLinked( q )] );
	printf( "\n" );

	delQueueLinked( &q );
	printf( "del: &q = %p, q = %p\n", &q, q );

	return EXIT_SUCCESS;
}




您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • ​ 公眾號【程式員書單】作者黃小斜,目前是阿裡Java工程師,業餘時間廣泛讀書,在公眾號里除了分享程式員必讀的技術書籍之外,也會推薦很多關於個人成長、投資理財等方面的書籍。你煩惱的每個問題,書中都有答案。 在這裡,我們將為你推薦幫助程式員以及互聯網從業者自我提升的各類好書、優質學習資源和工具,每周p ...
  • 前言 好看視頻大部分是精品短視頻!相同的介面返回不同的視頻給用戶 今天就帶大家把系統推薦的視頻給爬取下來! 知識點 1、動態數據抓包演示 2、json數據解析方法 3、視頻數據保存 環境介紹 python 3.6 pycharm requests json 爬蟲的一般思路 1、分析目標網頁,確定爬取 ...
  • 引言:Java集合框架提供了一套性能優良、使用方便的介面和類,它們位於java.util包中 Java集合框架(常用介面): Collection 介面存儲一組不唯一,無序的對象(父類介面) List 介面存儲一組不唯一,有序(插入順序)的對象 Set 介面存儲一組唯一,無序的對象 Map介面存儲一 ...
  • 在python3中對字元串的操作如下 1 info = "you are \t{name} and age is {age}" 2 print(info.capitalize()) #首字母大寫 3 print(info.count("g")) #計算字元串中g的數量 4 print(info.ce ...
  • 列表的操作:增刪改查以及列表的三種拷貝方式 1 names = ["tianjie","yecai","haitao","xinlin"] 2 names.append("tianjie") #列表在尾部新增 3 print(names) 4 print(names[0],names[2]) 5 p ...
  • 字典的增刪改查及遍歷 1 info = { 2 "stu3":"yuanyuan", 3 "stu1":"tianjie", 4 "stu2":"wangxinlin" 5 } 6 print(type(info)) #輸出類型 7 print(info) 8 print(info["stu1"]) ...
  • 什麼是 JWT Json web token (JWT), 是為了在網路應用環境間傳遞聲明而執行的一種基於 JSON 的開放標準((RFC 7519). 定義了一種簡潔的,自包含的方法用於通信雙方之間以 JSON 對象的形式安全的傳遞信息。因為數字簽名的存在,這些信息是可信的,JWT 可以使用 HM ...
  • 簡介 redis 多數據源主要的運用場景是在需要使用多個 redis 伺服器或者使用多個 redis 庫,本文采用的是 fastdep 依賴集成框架,快速集成 Redis 多數據源並集成 lettuce 連接池,只需引入依賴後在 yaml 文件中配置多數據源連接信息即可。 源碼地址 希望大家可以 s ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...