-
Notifications
You must be signed in to change notification settings - Fork 5
/
rbtree-rtems-compact-next.c
65 lines (56 loc) · 1.43 KB
/
rbtree-rtems-compact-next.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/**
* @file
*
* @ingroup ScoreRBTree
*
* @brief rtems_rbtree_compact_next() and rtems_rbtree_compact_next() implementation.
*/
/*
* Copyright (c) 2012 embedded brains GmbH. All rights reserved.
*
* embedded brains GmbH
* Obere Lagerstr. 30
* 82178 Puchheim
* Germany
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.org/license/LICENSE.
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include "compat.h"
#include "rbtree-rtems-compact-impl.h"
RBTree_Node *rtems_rbtree_compact_next(
const RBTree_Node *node,
RBTree_Direction dir
)
{
RBTree_Direction opp_dir = _RBTree_Opposite_direction( dir );
RBTree_Node *current = node->child[ dir ];
RBTree_Node *next = NULL;
if ( current != NULL ) {
next = current;
while ( ( current = current->child[ opp_dir ] ) != NULL ) {
next = current;
}
} else {
RBTree_Node *parent = _RBTree_Parent( node );
RBTree_Node *grandparent = _RBTree_Parent( parent );
if ( grandparent != NULL && node == parent->child[ opp_dir ] ) {
next = parent;
} else {
while ( grandparent != NULL && node == parent->child[ dir ] ) {
node = parent;
parent = grandparent;
grandparent = _RBTree_Parent( parent );
}
if ( grandparent != NULL ) {
next = parent;
}
}
}
return next;
}