Home  >  Article  >  Backend Development  >  ngx_queue_t doubly linked list

ngx_queue_t doubly linked list

WBOY
WBOYOriginal
2016-08-08 09:20:191057browse

ngx_queue_t Doubly linked list

structure

typedefstruct ngx_queue_s ngx_queue_t;
typedefstruct ngx_queue_s {
    ngx_queue_t *prev;
    ngx_queue_t *next;
};

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 nameParameter meaningExecution 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 aboveCheck whether the linked list is empty
nxg_queue_insert_head(h,x)hSame as above, x is the ngx_queue_t pointer to be insertedHead insertion method
nxg_queue_insert_head(h,x )Same as aboveTail insertion method
ngx_queue_head(h)Same as aboveReturn to the back pointer
ngx_queue_tail(h)Same as aboveReturn to the tail pointer
ngx_queue_sentinel(h) Same as aboveReturn the structure pointer
ngx_queue_remove(x)Same as aboveRemove 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 pointersmerge the linked lists. n is followed by h
ngx_queue_middle(h)Same as aboveReturns the pointer of the N/2+1th element
ngx_queue_sort(h,compfunc)cmpfunc is the comparison method of elementsUse ** 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)
#include #include "./ngx_queue.h"//元素所在结构体typedefstruct _TestNode{
    u_char *str;
    ngx_queue_t qEle;   //包含ngx_queue_t组成双向链表int num;
}TestNode;

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

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

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

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

    //Pirnt queue
    printQueue(&queueContainer);

    //Sort
    ngx_queue_sort(&queueContainer,compTestNode);

    //Print queue after sort
    printQueue(&queueContainer);

    return0;
}
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 listReturns 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 structureReturns 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 variableInsert 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:
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 [email protected]
Previous article:php all the wayNext article:php all the way