The standard library's linked-list Node
uses the Option
type:
struct Node<T> {
next: Option<NonNull<Node<T>>>,
prev: Option<NonNull<Node<T>>>,
element: T,
}
and creates a node with this code:
Node {
next: None,
prev: None,
element,
}
The implementation of LeafNode
of BTree
, the standard library uses a raw pointer for the parent node:
struct LeafNode<K, V> {
parent: *const InternalNode<K, V>,
parent_idx: MaybeUninit<u16>,
len: u16,
keys: MaybeUninit<[K; CAPACITY]>,
vals: MaybeUninit<[V; CAPACITY]>,
}
and creates new leaf nodes by setting parent
to ptr::null
:
LeafNode {
keys: MaybeUninit::uninitialized(),
vals: MaybeUninit::uninitialized(),
parent: ptr::null(),
parent_idx: MaybeUninit::uninitialized(),
len: 0
}
We can use nullptr
to implement the above code in C++, so what's the difference between Option
and std::ptr::null()
to represent a null pointer? What's the recommended way to represent a null pointer?