mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 18:37:35 +00:00
LibC: Implement tfind and tsearch
This commit is contained in:
parent
d045181375
commit
7448626bae
6 changed files with 265 additions and 0 deletions
18
Userland/Libraries/LibC/bits/search.h
Normal file
18
Userland/Libraries/LibC/bits/search.h
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* Copyright (c) 2021, the SerenityOS developers.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
// This is technically an implementation detail, but we require this for testing.
|
||||
// The key always has to be the first struct member.
|
||||
struct search_tree_node {
|
||||
const void* key;
|
||||
struct search_tree_node* left;
|
||||
struct search_tree_node* right;
|
||||
};
|
||||
|
||||
struct search_tree_node* new_tree_node(const void* key);
|
||||
void delete_node_recursive(struct search_tree_node* node);
|
Loading…
Add table
Add a link
Reference in a new issue