- C
- Caml
- C++
- C#
- D
- Dart
- Erlang
- Fortran
- Go
- Go
- Haskell
- JS
- Java
- Obj-C
- PHP
- PHP
- Pascal
- Pascal
- Perl
- Python
- Ruby
- Rust
- Scala
- Scheme
type Tree[L any] struct {
Label L
Children []*Tree[L]
}
The type parameter L is for arbitrary node label data.
A nil *Tree denotes the empty tree.
A nil *Tree denotes the empty tree.
type Tree struct {
Key keyType
Deco valueType
Children []*Tree
}
keyType should be easily comparable.
valueType is a type of value associated with current node.
Children is a slice of pointers.
Note that in Go you can call methods of pointer type *Tree even on a nil receiver (an empty tree).
valueType is a type of value associated with current node.
Children is a slice of pointers.
Note that in Go you can call methods of pointer type *Tree even on a nil receiver (an empty tree).
class Tree<K,V> {
K key;
V deco;
List<Tree<K,V>> children = new ArrayList<>();
}
Then you will want to add constructors, getters, setters.
@interface Node:NSObject
@property id value; // id means any object value
@property NSMutableArray *children;
@end
// usage like
Node *n=[Node new];
n.value=@1;
[n.children addObject:otherNode];
[n.children removeLastObject];
// somewhere needed also
@implementation Node
-(instancetype)init {
if (!(self=[super init])) return nil;
_children=[NSMutableArray array];
return self;
}
@end
Compare also #9
final class Node {
public function __construct(public array $children, public mixed $data) {}
}
In >php 8.0 the code can be simplified a lot
class Tree
{
public $children = [];
public $data;
public function __construct($data, $children)
{
$this->data = $data;
$this->children = $children;
}
}