Home Backend Development PHP Tutorial ngx_queue_t doubly linked list

ngx_queue_t doubly linked list

Aug 08, 2016 am 09:20 AM
amp queue

ngx_queue_t Doubly linked list

structure

<code><span>typedef</span><span>struct</span> ngx_queue_s ngx_queue_t;
<span>typedef</span><span>struct</span> ngx_queue_s {
    ngx_queue_t *prev;
    ngx_queue_t *next;
};</code>
Copy after login

The structure of the entire linked list is: there is an empty head, which is used as the start and sentinel of the linked list (used during traversal), and then uses the following method to follow up on this head Position plus node.


Methods provided by the container

Parameters of the parameter
Method name Parameter meaning Execution meaning
ngx_queue_init(h) h is the pointer of ngx_queue_t chain Table container initialization, empty linked list
ngx_queue_empty(h) Same as above Check whether the linked list is empty
nxg_queue_insert_head(h,x) hSame as above, x is the ngx_queue_t pointer to be inserted Head insertion method
nxg_queue_insert_head(h,x ) Same as above Tail insertion method
ngx_queue_head(h) Same as above Return to the back pointer
ngx_queue_tail(h) Same as above Return to the tail pointer
ngx_queue_sentinel(h) Same as above Return the structure pointer
ngx_queue_remove(x) Same as above Remove the -> There are two parts: q (excluding q) and q->tail. The pointer of the latter part is stored on n
ngx_queue_add(h,n) h and n are both doubly linked list container pointers merge the linked lists. n is followed by h
ngx_queue_middle(h) Same as above Returns the pointer of the N/2+1th element
ngx_queue_sort(h,compfunc) cmpfunc is the comparison method of elements Use ** Insert sort ** CPMFUNC prototype: ngx_int_t (*cpmfunc) (const ngx_queue_t*a, const ngx_queue_t*b)
The method name of the element in the two -way linked list

Execution meaning

ngx_queue_prev(q)ngx_queue_data(q,type,member) ngx_queue_insert(q,x)
<code><span>#include <stdio.h></span><span>#include "./ngx_queue.h"</span><span>//元素所在结构体</span><span>typedef</span><span>struct</span> _TestNode{
    u_char *str;
    ngx_queue_t qEle;   <span>//包含ngx_queue_t组成双向链表</span><span>int</span> num;
}TestNode;

<span>//设置的比较函数</span>
ngx_int_t compTestNode(<span>const</span> ngx_queue_t *a,<span>const</span> ngx_queue_t *b){
    TestNode *aNode = ngx_queue_data(a, TestNode, qEle);
    TestNode *bNode = ngx_queue_data(b, TestNode, qEle);
    <span>return</span> aNode->num > bNode->num;
}

<span>//按顺序打印链表内容</span><span>void</span> printQueue(ngx_queue_t *head){
    ngx_queue_t *pNode = NULL;
    <span>for</span>(pNode = ngx_queue_head(head);\
        pNode != ngx_queue_sentinel(head);\
        pNode = ngx_queue_next(pNode)){
        TestNode *node = ngx_queue_data(pNode,TestNode,qEle);
        <span>printf</span>(<span>"%d "</span>,node->num);
    }
    <span>printf</span>(<span>"\n"</span>);
}

<span>int</span> main(){
    ngx_queue_t queueContainer;         <span>//Create a ngx_queue_t variable</span>
    ngx_queue_init(&queueContainer);    <span>//Initialize the variable</span><span>int</span> i = <span>0</span>;
    TestNode node[<span>5</span>];
    <span>for</span>(;i<<span>5</span>;++i)
        node[i].num = i;

    <span>//可以考虑一下插入后的顺序</span>
    ngx_queue_insert_tail(&queueContainer,&node[<span>0</span>].qEle);
    ngx_queue_insert_head(&queueContainer,&node[<span>1</span>].qEle);
    ngx_queue_insert_tail(&queueContainer,&node[<span>2</span>].qEle);
    ngx_queue_insert_after(&queueContainer,&node[<span>3</span>].qEle);
    ngx_queue_insert_tail(&queueContainer,&node[<span>4</span>].qEle);

    <span>//Pirnt queue</span>
    printQueue(&queueContainer);

    <span>//Sort</span>
    ngx_queue_sort(&queueContainer,compTestNode);

    <span>//Print queue after sort</span>
    printQueue(&queueContainer);

    <span>return</span><span>0</span>;
}</code>
Copy after login
For the "ngx_queue.h" header file used, I copied it from the Nginx source code and modified it. It's quite simple, so I won't upload it.
ngx_queue_next(q) q is a pointer to a member of a structure variable ngx_queue_t in the linked list Returns the next element
Same as above Return the previous element
q Same as above, type is the structure type, member is the name of ngx_queue_t in the structure Returns the first address of the structure variable where the q variable is located
q and x are both ngx_queue_t member pointers of a certain structure variable Insert the structure variable where x is after the structure variable where q is
Test sort Note:

Copyright Statement: Pain is just in your mind.

The above introduces the ngx_queue_t doubly linked list, including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Laravel development: How to use Laravel Queue to handle asynchronous tasks? Laravel development: How to use Laravel Queue to handle asynchronous tasks? Jun 13, 2023 pm 08:32 PM

As applications become more complex, handling and managing large amounts of data and processes is a challenge. In order to handle this situation, Laravel provides users with a very powerful tool, the Laravel Queue (Queue). It allows developers to run tasks like sending emails, generating PDFs, handling image cropping, etc. in the background without any impact on the user interface. In this article, we will take a deep dive into how to use Laravel queues. What is LaravelQueue queue

What coin is AMP? What coin is AMP? Feb 24, 2024 pm 09:16 PM

What is AMP Coin? The AMP token was created by the Synereo team in 2015 as the main trading currency of the Synereo platform. AMP token aims to provide users with a better digital economic experience through multiple functions and uses. Purpose of AMP Token The AMP Token has multiple roles and functions in the Synereo platform. First, as part of the platform’s cryptocurrency reward system, users are able to earn AMP rewards by sharing and promoting content, a mechanism that encourages users to participate more actively in the platform’s activities. AMP tokens can also be used to promote and distribute content on the Synereo platform. Users can increase the visibility of their content on the platform by using AMP tokens to attract more viewers to view and share

Security issues and solutions for Java Queue in multi-threaded environment Security issues and solutions for Java Queue in multi-threaded environment Jan 13, 2024 pm 03:04 PM

Security issues and solutions for JavaQueue queues in multi-threaded environments Introduction: In multi-threaded programming, shared resources in the program may face race conditions, which may lead to data inconsistency or errors. In Java, Queue is a commonly used data structure. When multiple threads operate the queue at the same time, there are security issues. This article will discuss the security issues of JavaQueue queues in multi-threaded environments, and introduce several solutions, focusing on explanations in the form of code examples. one

Application of Queue in Java Application of Queue in Java Feb 18, 2024 pm 03:52 PM

Usage of Queue in Java In Java, Queue (queue) is a commonly used data structure that follows the first-in, first-out (FIFO) principle. Queue can be used to implement message queues, task scheduling and other scenarios, and can well manage the arrangement and processing order of data. This article will introduce the usage of Queue and provide specific code examples. The definition and common methods of Queue are in Java. Queue is an interface in JavaCollectionsFramework

PHP SPL Data Structures: Secrets to Boost Application Performance PHP SPL Data Structures: Secrets to Boost Application Performance Feb 19, 2024 pm 11:12 PM

Concept of SPL Data Structures PHPSPL (Standard PHP Library) contains a set of data structures and iterator classes designed to enhance PHP's native data types. These structures are optimized to efficiently store and manipulate a variety of data and provide a consistent interface and flexible iteration mechanism. Core SPL Data Structures The SPL library provides a variety of data structures, including: LinkedList: a doubly linked list that allows fast insertion, deletion, and search. Stack: Last-in-first-out (LIFO) data structure for stack operations. Queue: First-in-first-out (FIFO) data structure for queue operations. Map: A collection of key-value pairs, providing efficient key lookup and data storage. Set: unique value collection, supports fast member lookup and collection

Basic concepts and basic operations of Java Queue Basic concepts and basic operations of Java Queue Jan 13, 2024 pm 01:04 PM

Basic concepts and operations of JavaQueue Queue (Queue) is a common data structure that operates according to the first-in-first-out (FIFO) principle. In Java programming, we can use the Queue interface and its implementation classes to implement queue functions. This article will introduce the basic concepts and common operations of Queue, and give specific code examples. 1. The basic concept of queue Queue is a linear data structure, which has two basic operations: enqueue and deque

Java collection framework interview secrets: Overcome algorithms and data structures, and get your favorite offer Java collection framework interview secrets: Overcome algorithms and data structures, and get your favorite offer Feb 23, 2024 am 10:30 AM

The Java collection framework is the core component in the Java programming language for storing and manipulating data, and provides a rich set of collection types and related operations. In Java interviews, the collection framework is one of the focuses of the examination. Mastering the principles and usage of the collection framework can help you easily cope with the interview and get your favorite offer. 1. Collection Framework Overview The Java collection framework provides a variety of collection types, such as List, Set, Map and Queue, each type has its unique characteristics and uses. List is an ordered collection of elements, and elements can be repeated; Set is an ordered collection of elements, and elements cannot be repeated; Map is a collection of key-value pairs, the keys are unique, and the values ​​can be repeated; Queue is a first-in, first-out collection of elements .

Amp (AMP) Crypto Hints at Reversal Ahead Amp (AMP) Crypto Hints at Reversal Ahead Aug 27, 2024 am 09:04 AM

Amp [AMP] crypto price was up 11% in the last seven days and was trading at $0.0043, at the time of writing according to CoinMarketCap.

See all articles