Quantcast
Channel:   Bartosz Milewski's Programming Cafe » Multicore
Viewing all articles
Browse latest Browse all 10

Functional Data Structures in C++: Trees

$
0
0
Persistent trees are more interesting than persistent lists, which were the topic of my previous blog. In this installment I will concentrate on binary search trees. Such trees store values that can be compared to each other (they support total ordering). Such trees may be used to implement sets, multisets, or associated arrays. Here I […]

Viewing all articles
Browse latest Browse all 10

Trending Articles