队列实现栈
头文件
Queue.h
# pragma once # include <stdio.h>
# include <stdlib.h>
# include <assert.h>
# include <stdbool.h> typedef int QListDataType; typedef struct QListNode { QListDataType val; struct QListNode * next;
} QListNode; typedef struct Queue { QListNode* head; QListNode* tail; int size;
} Queue;
void QueueInit ( Queue* pq) ;
void QueueDestroy ( Queue* pq) ;
void QueuePush ( Queue* pq, QListDataType x) ;
void QueuePop ( Queue* pq) ;
QListDataType QueueFront ( Queue* pq) ;
QListDataType QueueBack ( Queue* pq) ;
int QueueSize ( Queue* pq) ;
bool QueueEmpty ( Queue* pq) ;
MyStack.h
# pragma once # include "Queue.h" typedef struct { Queue q1; Queue q2;
} MyStack;
MyStack* myStackCreate ( ) ;
void myStackPush ( MyStack* obj, int x) ;
int myStackPop ( MyStack* obj) ;
int myStackTop ( MyStack* obj) ;
bool myStackEmpty ( MyStack* obj) ;
void myStackFree ( MyStack* obj) ;
实现文件
Queue.c
# define _CRT_SECURE_NO_WARNINGS 1 # include "Queue.h"
void QueueInit ( Queue* pq)
{ assert ( pq) ; pq-> head = NULL ; pq-> tail = NULL ; pq-> size = 0 ;
}
void QueueDestroy ( Queue* pq)
{ assert ( pq) ; QListNode* cur = pq-> head; while ( cur) { QListNode* next = cur-> next; free ( cur) ; cur = next; } pq-> head = NULL ; pq-> tail = NULL ; pq-> size = 0 ;
}
void QueuePush ( Queue* pq, QListDataType x)
{ assert ( pq) ; QListNode* newnode = ( QListNode* ) malloc ( sizeof ( QListNode) ) ; if ( newnode == NULL ) { perror ( "malloc fail" ) ; return ; } newnode-> val = x; newnode-> next = NULL ; if ( pq-> tail == NULL ) { pq-> head = pq-> tail = newnode; } else { pq-> tail-> next = newnode; pq-> tail = newnode; } pq-> size++ ;
}
void QueuePop ( Queue* pq)
{ assert ( pq) ; assert ( pq-> size) ; QListNode* tmp = pq-> head-> next; free ( pq-> head) ; pq-> head = tmp; if ( pq-> head == NULL ) pq-> tail = NULL ; pq-> size-- ;
}
QListDataType QueueFront ( Queue* pq)
{ assert ( pq) ; assert ( pq-> size) ; return pq-> head-> val;
}
QListDataType QueueBack ( Queue* pq)
{ assert ( pq) ; assert ( pq-> size) ; return pq-> tail-> val;
}
int QueueSize ( Queue* pq)
{ assert ( pq) ; return pq-> size;
}
bool QueueEmpty ( Queue* pq)
{ assert ( pq) ; return pq-> size == 0 ;
}
MyStack.c
# define _CRT_SECURE_NO_WARNINGS 1 # include "MyStack.h" MyStack* myStackCreate ( ) { MyStack* new = ( MyStack* ) malloc ( sizeof ( MyStack) ) ; if ( new == NULL ) { perror ( "malloc fail" ) ; return NULL ; } QueueInit ( & ( new-> q1) ) ; QueueInit ( & ( new-> q2) ) ; return new;
} void myStackPush ( MyStack* obj, int x) { assert ( obj) ; if ( QueueEmpty ( & ( obj-> q1) ) ) { QueuePush ( & ( obj-> q2) , x) ; } else { QueuePush ( & ( obj-> q1) , x) ; }
} int myStackPop ( MyStack* obj) { assert ( obj) ; assert ( ! ( QueueEmpty ( & ( obj-> q1) ) && QueueEmpty ( & ( obj-> q2) ) ) ) ; Queue* full = & ( obj-> q2) ; Queue* empty = & ( obj-> q1) ; if ( QueueEmpty ( & ( obj-> q2) ) ) { full = & ( obj-> q1) ; empty = & ( obj-> q2) ; } while ( QueueSize ( full) > 1 ) { int tmp = QueueFront ( full) ; QueuePop ( full) ; QueuePush ( empty, tmp) ; } int ret = QueueFront ( full) ; QueuePop ( full) ; return ret;
} int myStackTop ( MyStack* obj) { assert ( obj) ; assert ( ! ( QueueEmpty ( & ( obj-> q1) ) && QueueEmpty ( & ( obj-> q2) ) ) ) ; int ret = 0 ; if ( QueueEmpty ( & ( obj-> q1) ) ) { ret = QueueBack ( & ( obj-> q2) ) ; } else { ret = QueueBack ( & ( obj-> q1) ) ; } return ret;
} bool myStackEmpty ( MyStack* obj) { assert ( obj) ; return ( QueueEmpty ( & ( obj-> q1) ) && QueueEmpty ( & ( obj-> q2) ) ) ;
} void myStackFree ( MyStack* obj) { assert ( obj) ; QueueDestroy ( & ( obj-> q1) ) ; QueueDestroy ( & ( obj-> q2) ) ; free ( obj) ; obj = NULL ;
}
栈实现队列
头文件
Stack.h
# pragma once
# include <stdio.h>
# include <stdlib.h>
# include <string.h>
# include <assert.h> # define CAPACITY_INIT 4 typedef int STDataType; typedef struct Stack { STDataType* a; int size; int capacity;
} Stack;
void StackInit ( Stack* ps) ;
void StackPush ( Stack* ps, STDataType x) ;
void StackPop ( Stack* ps) ;
STDataType StackTop ( Stack* ps) ;
int StackSize ( Stack* ps) ;
int StackEmpty ( Stack* ps) ;
void StackDestroy ( Stack* ps) ;
MyQueue.h
# pragma once
# include "Stack.h"
# include <stdbool.h> typedef struct { Stack in; Stack out;
} MyQueue;
MyQueue* myQueueCreate ( ) ;
void myQueuePush ( MyQueue* obj, int x) ;
int myQueuePop ( MyQueue* obj) ;
int myQueuePeek ( MyQueue* obj) ;
bool myQueueEmpty ( MyQueue* obj) ;
void myQueueFree ( MyQueue* obj) ;
实现文件
Stack.c
# define _CRT_SECURE_NO_WARNINGS 1
# include "Stack.h"
# include <string.h>
void StackInit ( Stack* ps)
{ assert ( ps) ; ps-> a = ( STDataType* ) malloc ( sizeof ( STDataType) * CAPACITY_INIT) ; if ( ps-> a == NULL ) { perror ( "malloc fail!" ) ; return ; } ps-> size = 0 ; ps-> capacity = CAPACITY_INIT;
}
void StackChekCapacity ( Stack* ps)
{ assert ( ps) ; if ( ps-> size == ps-> capacity) { ps-> a = ( STDataType* ) realloc ( ps-> a, sizeof ( STDataType) * ( ps-> capacity) * 2 ) ; if ( ps-> a == NULL ) { perror ( "realloc fail!" ) ; return ; } ps-> capacity *= 2 ; }
}
void StackPush ( Stack* ps, STDataType x)
{ assert ( ps) ; StackChekCapacity ( ps) ; ps-> a[ ps-> size++ ] = x;
}
void StackPop ( Stack* ps)
{ assert ( ps) ; assert ( ! StackEmpty ( ps) ) ; ps-> size-- ;
}
STDataType StackTop ( Stack* ps)
{ assert ( ps) ; assert ( ! StackEmpty ( ps) ) ; return ps-> a[ ps-> size - 1 ] ;
}
int StackSize ( Stack* ps)
{ assert ( ps) ; return ps-> size;
}
int StackEmpty ( Stack* ps)
{ assert ( ps) ; if ( ps-> size == 0 ) return 1 ; else return 0 ;
}
void StackDestroy ( Stack* ps)
{ assert ( ps) ; ps-> size = 0 ; ps-> capacity = 0 ; free ( ps-> a) ;
}
MyQueue.c
# define _CRT_SECURE_NO_WARNINGS 1 # include <string.h>
# include "MyQueue.h" MyQueue* myQueueCreate ( ) { MyQueue* new = ( MyQueue* ) malloc ( sizeof ( MyQueue) ) ; if ( new == NULL ) { perror ( "malloc fail" ) ; return NULL ; } StackInit ( & new-> in) ; StackInit ( & new-> out) ; return new;
} void myQueuePush ( MyQueue* obj, int x) { assert ( obj) ; StackPush ( & obj-> in, x) ;
} int myQueuePop ( MyQueue* obj) { assert ( obj) ; assert ( ! ( StackEmpty ( & obj-> in) && StackEmpty ( & obj-> out) ) ) ; if ( StackEmpty ( & obj-> out) ) { while ( StackSize ( & obj-> in) > 0 ) { int tmp = StackTop ( & obj-> in) ; StackPop ( & obj-> in) ; StackPush ( & obj-> out, tmp) ; } } int ret = StackTop ( & obj-> out) ; StackPop ( & obj-> out) ; return ret;
} int myQueuePeek ( MyQueue* obj) { assert ( obj) ; assert ( ! ( StackEmpty ( & obj-> in) && StackEmpty ( & obj-> out) ) ) ; if ( StackEmpty ( & obj-> out) ) { while ( StackSize ( & obj-> in) > 0 ) { int tmp = StackTop ( & obj-> in) ; StackPop ( & obj-> in) ; StackPush ( & obj-> out, tmp) ; } } int ret = StackTop ( & obj-> out) ; return ret;
} bool myQueueEmpty ( MyQueue* obj) { assert ( obj) ; return StackEmpty ( & obj-> in) && StackEmpty ( & obj-> out) ;
} void myQueueFree ( MyQueue* obj) { assert ( obj) ; StackDestroy ( & obj-> in) ; StackDestroy ( & obj-> out) ; free ( obj) ; obj = NULL ;
}