Algorithms_in_C 1.0.0
Set of algorithms implemented in C.
Loading...
Searching...
No Matches
node Struct Reference

Node, the basic data structure in the tree. More...

#include <include.h>

Collaboration diagram for node:
[legend]

Data Fields

struct nodeleft
 left child
 
struct noderight
 right child
 
int data
 data of the node
 
struct nodeleftNode
 
struct noderightNode
 
int val
 
struct nodepar
 
int color
 
int vertex
 
struct nodenext
 
int info
 
struct nodelink
 
struct nodepre
 
char data
 

Detailed Description

Node, the basic data structure in the tree.

Kyler Smith, 2017 Stack data structure implementation.

INCLUDES.

Defining the structure of the node which contains 'data' (type : integer), two pointers 'next' and 'pre' (type : struct node).

creating a stucture with 'data'(type:int), two pointers 'next','pre' (type: struct node) .


The documentation for this struct was generated from the following files: