Skip to content

Commit

Permalink
Updated_redblacktree.c_file
Browse files Browse the repository at this point in the history
  • Loading branch information
akshithagunupati committed Nov 26, 2023
1 parent e5dad3f commit 57d7e14
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions data_structures/binary_trees/red_black_tree.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Node *newNode(int val, Node *par)
create->left = NULL;
create->right = NULL;
create->color = 1;
return create;
}

// Check if the node is the leaf
Expand Down

0 comments on commit 57d7e14

Please sign in to comment.