chuyiwen_gmsv/link.c

136 lines
3.4 KiB
C
Raw Permalink Normal View History

2016-12-24 08:45:52 +08:00
#include <stdlib.h>
#include "version.h"
#include "link.h"
#include "buf.h"
/*
2017-01-13 23:37:03 +08:00
*
* top
*
2016-12-24 08:45:52 +08:00
*/
BOOL Nodeappendtail( Node** top , Node* add )
{
2017-01-13 23:37:03 +08:00
Node* c; /*伙□皿迕*/
Node* next; /*蕙仄仁综月用□玉迕*/
2016-12-24 08:45:52 +08:00
2017-01-13 23:37:03 +08:00
/*玄永皿互NULL井升丹井及民尼永弁*/
2016-12-24 08:45:52 +08:00
if( *top == NULL ){
*top = allocateMemory( sizeof( Node ) );
if( *top== NULL ) return FALSE;
2017-01-13 23:37:03 +08:00
(*top)->next = NULL; /*粮五反 中*/
(*top)->size = add->size; /*赢今及忡栋*/
(*top)->val = add->val; /*禾奶件正□及戊疋□*/
2016-12-24 08:45:52 +08:00
return TRUE;
}
2017-01-13 23:37:03 +08:00
for( c = *top ; c->next ; c = c->next ); /* c及匏 毛内日允 */
2016-12-24 08:45:52 +08:00
next = allocateMemory( sizeof(Node) );
if( next == NULL )return FALSE;
2017-01-13 23:37:03 +08:00
c->next = next; /* next卞袄毛涩烂允月 */
next->next = NULL; /*粮五反 中*/
next->val = add->val; /*禾奶件正□及戊疋□*/
next->size = add->size; /*赢今及忡栋*/
2016-12-24 08:45:52 +08:00
return TRUE;
}
/*
2017-01-13 23:37:03 +08:00
*
*
* top
*
2016-12-24 08:45:52 +08:00
*/
BOOL Nodeappendhead( Node** nowtop , Node* add )
{
2017-01-13 23:37:03 +08:00
Node* newtop; /*蕙仄中燮 迕*/
2016-12-24 08:45:52 +08:00
2017-01-13 23:37:03 +08:00
/*玄永皿互NULL井升丹井及民尼永弁*/
2016-12-24 08:45:52 +08:00
if( *nowtop == NULL ){
*nowtop = allocateMemory( sizeof( Node ) );
if( *nowtop == NULL ) return FALSE;
2017-01-13 23:37:03 +08:00
(*nowtop)->next = NULL; /*粮五反 中*/
(*nowtop)->size = add->size; /*赢今及忡栋*/
(*nowtop)->val = add->val; /*禾奶件正□及戊疋□*/
2016-12-24 08:45:52 +08:00
return TRUE;
}
/*
2017-01-13 23:37:03 +08:00
*
2016-12-24 08:45:52 +08:00
*/
newtop = allocateMemory( sizeof(Node) );
newtop->next = *nowtop;
newtop->val = add->val;
newtop->size = add->size;
*nowtop = newtop;
return TRUE;
}
/*
2017-01-13 23:37:03 +08:00
*
* ret
*
2016-12-24 08:45:52 +08:00
*/
BOOL Noderemovehead( Node** top , Node* ret)
{
2017-01-13 23:37:03 +08:00
Node* newtop; /*蕙仄仁燮 卞卅月用□玉*/
2016-12-24 08:45:52 +08:00
if( *top == NULL )return FALSE;
ret->val = (*top)->val;
ret->size = (*top)->size;
newtop = (*top)->next;
freeMemory( *top );
*top = newtop;
return TRUE;
}
/*
2017-01-13 23:37:03 +08:00
*
* ret
*
2016-12-24 08:45:52 +08:00
*/
BOOL Noderemovetail( Node** top , Node* ret)
{
2017-01-13 23:37:03 +08:00
Node* c; /*伙□皿迕*/
Node* c1; /*伙□皿迕 中勾匹手 c->next毛隙允*/
2016-12-24 08:45:52 +08:00
if( *top == NULL )return FALSE;
2017-01-13 23:37:03 +08:00
c = *top; /*赓渝袄涩烂*/
c1 = c->next; /*赓渝袄涩烂*/
2016-12-24 08:45:52 +08:00
while(1){
if( c1->next == NULL )
/*
2017-01-13 23:37:03 +08:00
* c1
2016-12-24 08:45:52 +08:00
* |
* | next |---->+------+
* |------| | next |---->NULL
* | | +------+
* +------+ | |
* +------+
2017-01-13 23:37:03 +08:00
*
2016-12-24 08:45:52 +08:00
*/
break;
c=c->next;
c1=c->next;
}
2017-01-13 23:37:03 +08:00
c->next = NULL; /*c1卞丐凶月手及毛绰轮允月及匹next反NULL午允月*/
/*戊疋□*/
2016-12-24 08:45:52 +08:00
ret->val = c1->val;
ret->size = c1->size;
freeMemory( c1 );
return TRUE;
}