st_tree icon indicating copy to clipboard operation
st_tree copied to clipboard

A fast and flexible c++ template class for tree data structures

Results 6 st_tree issues
Sort by recently updated
recently updated
newest added

In my scenario, I have an st_tree and an iterator to an arbitrary node in the tree. I then try to build the path for that node by visiting every...

I have changed to version 1.2.2 and after running cmake --install the file st_treeConfigVersion.cmake still contains the version 1.0.6 which makes it difficult to include the newest version via find_package....

I use st_tree to create a tree and then "solve" it using the minimax algorithm. The result tree get stored in a vector. There are 1,000,000 trees and one tree...

Building with Tasking Tricore v6.3r1 compiler, with C++14 as the standard, I get the following warnings: ``` cptc W0111: ["path/to/st_tree/include/st_tree_nodes.h" 130] statement is unreachable cptc W0111: ["path/to/st_tree/include/st_tree_nodes.h" 723] statement is...

I am thinking about using st_tree on a new project, and have been doing some preliminary testing. I have one question about obtaining a pointer to the root node to...

Compiling the following code with the "-Werror=free-nonheap-object -O3" flags leads to a warning ```c++ #include using namespace st_tree; int main () { tree t; t.insert(1); return 0; } ``` **how...