2015-04-19 16:44:48 +02:00
|
|
|
/*
|
|
|
|
This file is part of libcapwap.
|
|
|
|
|
|
|
|
libcapwap is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
libcapwap is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Foobar. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2018-03-11 00:56:41 +01:00
|
|
|
*@file
|
2015-04-19 16:44:48 +02:00
|
|
|
*@brief Implementation of mavliter_next
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "mavl.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the next element within an AVL Tree.
|
|
|
|
* @param i pointer to AVL Iterator
|
|
|
|
* @return the element or NULL if there is no next elemeent.
|
2018-03-11 00:56:41 +01:00
|
|
|
*/
|
2018-03-03 17:42:28 +01:00
|
|
|
|
2018-03-17 16:21:23 +01:00
|
|
|
void * mavliter_next ( mavliter_t *i )
|
2015-04-19 16:44:48 +02:00
|
|
|
{
|
2018-03-11 00:56:41 +01:00
|
|
|
while ( i->stack_ptr ) {
|
2015-04-19 16:44:48 +02:00
|
|
|
i->stack_ptr--;
|
2018-03-11 00:56:41 +01:00
|
|
|
i->cur = i->stack[i->stack_ptr];
|
|
|
|
|
|
|
|
if ( !i->cur )
|
2015-04-19 16:44:48 +02:00
|
|
|
continue;
|
2018-03-11 00:56:41 +01:00
|
|
|
|
|
|
|
if ( ( i->stack_ptr ) & 1 ) {
|
|
|
|
/*return &i->cur->data;*/
|
|
|
|
return mavlnode_dataptr ( i->cur );
|
2015-04-19 16:44:48 +02:00
|
|
|
}
|
2018-03-11 00:56:41 +01:00
|
|
|
|
|
|
|
break;
|
2015-04-19 16:44:48 +02:00
|
|
|
}
|
2018-03-11 00:56:41 +01:00
|
|
|
|
|
|
|
if ( !i->cur ) {
|
2015-04-19 16:44:48 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
2018-03-11 00:56:41 +01:00
|
|
|
|
|
|
|
while ( i->cur->left ) {
|
2015-04-19 16:44:48 +02:00
|
|
|
/* push right branch */
|
2018-03-11 00:56:41 +01:00
|
|
|
i->stack[i->stack_ptr++] = i->cur->right;
|
2015-04-19 16:44:48 +02:00
|
|
|
|
|
|
|
/* push node */
|
2018-03-11 00:56:41 +01:00
|
|
|
i->stack[i->stack_ptr++] = i->cur;
|
|
|
|
|
|
|
|
i->cur = i->cur->left;
|
2015-04-19 16:44:48 +02:00
|
|
|
}
|
2018-03-11 00:56:41 +01:00
|
|
|
|
|
|
|
i->stack[i->stack_ptr++] = i->cur->right;
|
|
|
|
|
|
|
|
/* return &i->cur->data;*/
|
|
|
|
return mavlnode_dataptr ( i->cur );
|
|
|
|
|
2015-04-19 16:44:48 +02:00
|
|
|
}
|