迴圈隊列-順序存儲

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

數組實現迴圈隊列 創建3個文件:queueArray.h、queueArray.c、queueArrayTest.c queueArray.h c include include include include "queueArray.h" define ADT QueueArray // 功能: ...


數組實現迴圈隊列




創建3個文件:queueArray.h、queueArray.c、queueArrayTest.c




queueArray.h
#ifndef QUEUE_ARRAY_H_
#define QUEUE_ARRAY_H_

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

#define ADT QueueArray

// 功能: 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 QueueArray ADT;

// 功能: 創建一個新的隊列.
// 參數: capacity(隊列的最大容量).
// 返回: 一個新的隊列.
// 註意: 當 capacity 小於0時,預設為512; 當記憶體分配失敗時,將錯誤退出程式.
extern ADT *newQueueArray( int32_t capacity );

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

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

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

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


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

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

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

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

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

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

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

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

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

#undef ADT

#endif

queueArray.c
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include "queueArray.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 ADT QueueArray

struct QueueArray {
	int32_t capacity;
	int32_t size;
	int32_t head;
	void *array[0];
};

ADT *newQueueArray( int32_t capacity ) {
	ADT *queue = NULL;

	capacity = capacity < 0 ? 512 : capacity;
	queue = malloc( sizeof(*queue) + sizeof(queue->array[0]) * capacity );
	ERROR_EXIT( !queue, NULL );
	queue->capacity = capacity;
	queue->size = 0;
	queue->head = 0;

	return queue;
}

void *addQueueArray( QueueArray *queue, void *data ) {
	ERROR_EXIT( !queue || queue->size >= queue->capacity, NULL );
	queue->array[(queue->head + queue->size++) % queue->capacity] = data;

	return data;
}

void *pollQueueArray( QueueArray *queue ) {
	void *data = NULL;

	ERROR_EXIT( !queue || queue->size < 1, NULL );
	data = queue->array[queue->head];
	queue->head = (queue->head + 1) % queue->capacity;
	--queue->size;

	return data;
}

void *peekQueueArray( QueueArray *queue ) {
	ERROR_EXIT( !queue || queue->size < 1, NULL );

	return queue->array[queue->head];
}

void *peekTailQueueArray( QueueArray *queue ) {
	ERROR_EXIT( !queue || queue->size < 1, NULL );

	return queue->array[(queue->head + queue->size - 1) % queue->capacity];
}

int existQueueArray( QueueArray *queue, void *data, CompareFunc *cmp ) {
	ERROR_EXIT( !queue || !cmp, NULL );

	for( int32_t i = 0; i < queue->size; ++i ) {
		if( !cmp( queue->array[(queue->head + i) % queue->capacity], data ) ) {
			return 1;
		}
	}

	return 0;
}

int32_t findQueueArray( QueueArray *queue, void *data, CompareFunc *cmp ) {
	int32_t i = 0, j = 0;

	ERROR_EXIT( !queue || !cmp, NULL );
	for( i = 0; i < queue->size; ++i ) {
		j = (queue->head + i) % queue->capacity;
		if( !cmp( queue->array[j], data ) ) {
			return j;
		}
	}

	return -1;
}

int32_t findTailQueueArray( QueueArray *queue, void *data, CompareFunc *cmp ) {
	int32_t i = 0, j = 0;

	ERROR_EXIT( !queue || !cmp, NULL );
	for( i = queue->size - 1; i >= 0; --i ) {
		j = (queue->head + i) % queue->capacity;
		if( !cmp( queue->array[j], data ) ) {
			return j;
		}
	}

	return -1;
}

int32_t sizeQueueArray( QueueArray *queue ) {
	ERROR_EXIT( !queue, NULL );

	return queue->size;
}


int emptyQueueArray( QueueArray *queue ) {
	ERROR_EXIT( !queue, NULL );

	return queue->size < 1;
}

int fullQueueArray( QueueArray *queue ) {
	ERROR_EXIT( !queue, NULL );

	return queue->size >= queue->capacity;
}

int32_t capacityQueueArray( QueueArray *queue ) {
	ERROR_EXIT( !queue, NULL );

	return queue->capacity;
}

void clearQueueArray( QueueArray *queue ) {
	ERROR_EXIT( !queue, NULL );

	queue->size = 0;
	queue->head = 0;
}

void delQueueArray( QueueArray **queue ) {
	ERROR_EXIT( !queue, NULL );
	free( *queue );
	*queue = NULL;
}

queueArrayTest.c
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <time.h>
#include "queueArray.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;
	QueueArray *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 = newQueueArray( n );
	printf( "new: &q = %p, q = %p\n", &q, q );

	printf( "peek       = %d\n", emptyQueueArray( q ) ? INT32_MIN : *(int32_t *) peekQueueArray( q ) );
	printf( "peekTail = %d\n", emptyQueueArray( q ) ? INT32_MIN : *(int32_t *) peekTailQueueArray( q ) );
	printf( "size     = %d\n", sizeQueueArray( q ) );
	printf( "empty = %s\n", tf[emptyQueueArray( q )]);
	printf( "full  = %s\n", tf[fullQueueArray( q )] );
	printf( "capacity = %d\n", capacityQueueArray( q ) );
	printf( "\n" );

	printf( "add all: [" );
	for( i = 0; i < n; ++i ) {
		printf( ", %5d", *(int32_t *) addQueueArray( q, &a[i] ) );
	}
	printf( "]\n" );

	printf( "peek       = %d\n", emptyQueueArray( q ) ? INT32_MIN : *(int32_t *) peekQueueArray( q ) );
	printf( "peekTail = %d\n", emptyQueueArray( q ) ? INT32_MIN : *(int32_t *) peekTailQueueArray( q ) );
	printf( "size     = %d\n", sizeQueueArray( q ) );
	printf( "empty = %s\n", tf[emptyQueueArray( q )] );
	printf( "full  = %s\n", tf[fullQueueArray( q )] );
	printf( "capacity = %d\n", capacityQueueArray( q ) );
	printf( "\n" );

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

	k = a[0];
	//k = rand();
	printf( "find &k(%d) = %d\n", k, findQueueArray( q, &k, cmp ) );
	printf( "\n" );

	//k = a[0];
	k = rand();
	printf( "findTile &k(%d) = %d\n", k, findTailQueueArray( q, &k, cmp ) );
	printf( "\n" );

	printf( "poll all:  [" );
	while( !emptyQueueArray( q ) ) {
		printf( ", %5d", *(int32_t *) pollQueueArray( q ) );
		//printf( "peek       = %d\n", emptyQueueArray( q ) ? INT32_MIN : *(int32_t *) peekQueueArray( q ) );
		//printf( "peekTail = %d\n", emptyQueueArray( q ) ? INT32_MIN : *(int32_t *) peekTailQueueArray( q ) );
		//printf( "size     = %d\n", sizeQueueArray( q ) );
		//printf( "empty = %s\n", tf[emptyQueueArray( q )] );
		//printf( "full  = %s\n", tf[fullQueueArray( q )] );
		//printf( "capacity = %d\n", capacityQueueArray( q ) );
		//printf( "\n" );
	}
	printf( "]\n" );

	printf( "peek       = %d\n", emptyQueueArray( q ) ? INT32_MIN : *(int32_t *) peekQueueArray( q ) );
	printf( "peekTail = %d\n", emptyQueueArray( q ) ? INT32_MIN : *(int32_t *) peekTailQueueArray( q ) );
	printf( "size     = %d\n", sizeQueueArray( q ) );
	printf( "empty = %s\n", tf[emptyQueueArray( q )] );
	printf( "full  = %s\n", tf[fullQueueArray( q )] );
	printf( "capacity = %d\n", capacityQueueArray( q ) );
	printf( "\n" );

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

	return EXIT_SUCCESS;
}




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

-Advertisement-
Play Games
更多相關文章
  • 【目錄】 一、CSS基礎 1、什麼是CSS3,如何學習? 2、CSS的註釋方法 3、CSS語法結構 4、CSS的三種引入方式 二、CSS選擇器 1、基本選擇器 2、組合選擇器 3、屬性選擇器 一、CSS基礎 1、什麼是CSS3,如何學習? CSS3 就是 CSS(Cascading Style Sh ...
  • 【目錄】 標簽&標簽屬性 1、HTML 註釋 2、HTML 文檔基礎結構 3、head 內常用標簽 4、body 內常用標簽 常用文本標簽 特殊符號 div / span 分塊標簽 a 標簽 img 標簽 list 列表標簽 table 表格標簽 form 表單標簽 1、HTML 註釋 (選中內容或 ...
  • 1、Bootstrap 中文網 https://www.bootcss.com/?spm=a313x.7781069.1998910419.46 2、W3School https://www.quanzhanketang.com/ ...
  • 登高遠眺 天高地迥,覺宇宙之無窮 基礎技術 "Deno 1.0 即將發佈,你需要知道的都在這裡了" Deno——來自 Node 之父 Ryan Dahl 的最新力作,在開源 2 年之際,終於將迎來 1.0 的正式版本。Deno 並不是 Node 的替代品,根據 Deno GitHub 官網上的介紹, ...
  • 1.問題描述 成功安裝證書,但是顯示連接不安全 此頁面的部分內容(例如圖像)不安全 如下圖 2.問題原因 頁面引用(含有)http資源的文件、圖片、腳本 如:圖片引自其他http資源的網站 firefox詳細解釋:https://developer.mozilla.org/zh-CN/docs/Se ...
  • 本文主要討論spring boot如何獲取前端傳過來的參數,這些參數主要有兩大類,一類是URL里的參數,一個是請求body里的參數 url里的參數 通過url里傳過來的參數一般有三種方式,下麵我們來看一下 路徑參數 路徑參數就是說在請求路徑里攜帶了幾個參數,比如有一個查詢banner詳情的介面,/v ...
  • 前言 入職新公司到現在也有一個月了,完成了手頭的工作,前幾天終於有時間研究下公司舊項目的代碼。在研究代碼的過程中,發現項目里用到了Spring Aop來實現資料庫的讀寫分離,本著自己愛學習(我自己都不信…)的性格,決定寫個實例工程來實現spring aop讀寫分離的效果。 環境部署 資料庫:MySq ...
  • 1、右鍵點擊項目,選擇properties 2、點擊Project facets 3、在右側的Runtimes中選中apache tomcat 4、勾選Dynamic Web Module 最終改為下麵的樣式,其餘的不要: 即可通過add and remove操作該web項目。 原文地址:https ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...