aboutsummaryrefslogtreecommitdiff
path: root/src/rbt/ft_rbtnew.c
blob: bda7d55faa65ffb12efd25ddc601357ce576f069 (plain)
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
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   ft_rbtnew.c                                        :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: charles <charles.cabergs@gmail.com>        +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2020/04/26 20:22:07 by charles           #+#    #+#             */
/*   Updated: 2020/04/26 20:24:44 by charles          ###   ########.fr       */
/*                                                                            */
/* ************************************************************************** */

#include "libft_rbt.h"

/*
** \brief        Create a new red-black tree
** \param data   Node's data
** \param color  Node's color
** \return       The created node with left, right and parent pointer to NULL
**               or NULL on error
*/

t_ftrbt	*ft_rbtnew(void *data, enum e_ftrbt_color color)
{
	t_ftrbt	*tree;

	if ((tree = (t_ftrbt*)malloc(sizeof(t_ftrbt))) == NULL)
		return (NULL);
	tree->left = NULL;
	tree->right = NULL;
	tree->data = data;
	tree->parent = NULL;
	tree->color = color;
	return (tree);
}