Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90715248
poemstreenode.cpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Nov 4, 02:59
Size
1 KB
Mime Type
text/x-c
Expires
Wed, Nov 6, 02:59 (1 d, 5 h)
Engine
blob
Format
Raw Data
Handle
22104826
Attached To
rLAMMPS lammps
poemstreenode.cpp
View Options
/*
*_________________________________________________________________________*
* POEMS: PARALLELIZABLE OPEN SOURCE EFFICIENT MULTIBODY SOFTWARE *
* DESCRIPTION: SEE READ-ME *
* FILE NAME: poemstreenode.cpp *
* AUTHORS: See Author List *
* GRANTS: See Grants List *
* COPYRIGHT: (C) 2005 by Authors as listed in Author's List *
* LICENSE: Please see License Agreement *
* DOWNLOAD: Free at www.rpi.edu/~anderk5 *
* ADMINISTRATOR: Prof. Kurt Anderson *
* Computational Dynamics Lab *
* Rensselaer Polytechnic Institute *
* 110 8th St. Troy NY 12180 *
* CONTACT: anderk5@rpi.edu *
*_________________________________________________________________________*/
#include "poemstreenode.h"
// constructor; initialize the data and pointer fields
// The pointer value NULL assigns a empty subtree
TreeNode
::
TreeNode
(
const
int
&
item
,
TreeNode
*
lptr
,
TreeNode
*
rptr
,
int
balfac
)
:
data
(
item
),
left
(
lptr
),
right
(
rptr
),
balanceFactor
(
balfac
)
{
}
// return left
TreeNode
*
TreeNode
::
Left
(
void
)
{
return
left
;
}
// return right
TreeNode
*
TreeNode
::
Right
(
void
)
{
return
right
;
}
int
TreeNode
::
GetBalanceFactor
(
void
)
{
return
balanceFactor
;
}
int
TreeNode
::
GetData
(
void
)
{
return
data
;
}
Event Timeline
Log In to Comment