TreeStructures 2.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package TreeStructures --version 2.0.0
                    
NuGet\Install-Package TreeStructures -Version 2.0.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="TreeStructures" Version="2.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="TreeStructures" Version="2.0.0" />
                    
Directory.Packages.props
<PackageReference Include="TreeStructures" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add TreeStructures --version 2.0.0
                    
#r "nuget: TreeStructures, 2.0.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=TreeStructures&version=2.0.0
                    
Install TreeStructures as a Cake Addin
#tool nuget:?package=TreeStructures&version=2.0.0
                    
Install TreeStructures as a Cake Tool

Introduction

This is a C# library designed to efficiently handle tree structures.
It emphasizes flexibility and extensibility, making it easy to manipulate various tree structures.

Features

  1. A rich set of extension methods for ITreeNode<TNode>
  2. Mutual referencing between parent and child nodes
  3. A collection of tree-structured classes with high extensibility
  4. Conversion between different data structures and tree structures
  5. Collection-related classes developed as a byproduct of implementing the above

Usage

Refer to the wiki.

Concept

This library is not intended to be a standalone solution.
Instead, it provides tree-related functionality while being designed to coexist with other libraries.

Below is a detailed explanation of its key features.

Rich Extension Methods

More than 60 extension methods, including overloads, are defined for ITreeNode<TNode>.
Some examples:

  • Enumeration: Preorder, Levelorder, all traversal methods, Leafs, Ancestors, DiscendArrivals, DescendTraces, etc.
  • Navigation: Root, NextSibling, LastSibling, etc.
  • Modification: TryAddChild, Try○○Child, Disassemble, RemoveAllDescendant, etc.
  • Parameter Retrieval: NodeIndex, NodePath, Height, Depth, etc.
  • Validation: IsDescendantOf, IsAncestorOf, IsRoot, etc.
  • Conversion: ToNodeMap, ToSerializableNodeMap, ToTreeDiagram, AsValuedTreeNode
  • Construction: Convert, AssembleTree, AssembleAsNAryTree, AssembleForestByPath

Mutual Referencing Between Parent and Child Nodes

Mutual references between parent and child nodes are handled by the base classes (TreeNodeBase or HierarchyWrapper).
In TreeNodeBase derivatives, customization is possible via ○○ChildProcess methods like RemoveChildProcess and InsertChildProcess, which are defined as protected virtual.

Tree-Structured Classes and Their Versatility

Depending on the use case, you can extend the following classes:

  • TreeNodeBase: For detailed customization, such as defining methods
  • GeneralTreeNode / ObservableTreeNode: When used as a data structure or container
  • NAryTreeNode: For an N-ary tree where empty nodes are represented as null
  • HierarchyWrapper / TreeNodeWrapper: For wrapping hierarchical structures
  • BindableHierarchyWrapper / BindableTreeNodeWrapper: For MVVM ViewModels that need observability and disposal

By overriding Setup(Inner | Public)ChildCollection in TreeNodeBase and its derivatives,
you can customize both internal and externally exposed collections.

For HierarchyWrapper and its derivatives, only externally exposed collections can be customized.

Conversion Between Different Data Structures and Tree Structures

Objects that do not implement ITreeNode<TNode> can still utilize its extension methods.
This is achieved by wrapping hierarchical structures with HierarchyWrapper<TSrc,TWrpr> or BindableHierarchyWrapper<TSrc,TWrpr>,
or by calling AsValuedTreeNode, which provides ITreeNode<TNode> extension methods.

Additionally, methods like Convert, AssembleTree, and ToNodeMap offer various ways to perform mutual conversions.

Collection Classes Developed in the Implementation Process

  • ListAligner<T,TList>
    Handles the reordering of a specified list.
  • ImitableCollection<TSrc,TConv>
    A collection synchronized with a specified collection.
  • CombinableObservableCollection<T>
    A collection that merges multiple observable collections.
  • ReadOnlyObservableItemCollection<T>
    An observable collection that monitors a specified collection
    and collectively observes the properties of each element.
  • ReadOnlySortFilterObservableCollection<T>
    An observable collection that monitors each element of a specified collection
    and adds sorting and filtering functionalities.
  • ListScroller<T>
    Provides navigation functionality within a collection.

Namespaces and Their Classification

TreeStructures;

Abstractly defined generic tree nodes, surrounding objects, and event arguments.

Inheritance diagram of generic tree nodes:

InheritanceGenericTreeNode

Inheritance diagram of NodePath and NodeIndex (surrounding objects):

InheritancePeripheralObjects

TreeStructures.Linq;

Extension methods for ITreeNode<TNode>, IMutableTreeNode<TNode>, and IEnumerable<T>.

TreeStructures.Utility;

Defines ResultWithValue<T>, used as the return value for Try○○ methods.

TreeStructures.Collections;

Collections used in internal implementations and within extension methods.

TreeStructures.EventManagement;

Objects related to event management, including those used for implementing observable tree nodes.

TreeStructures.Xml.Serialization;

Dictionaries used during serialization and deserialization.

TreeStructures.Tree;

Trees designed for specific purposes and use cases.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

  • .NETStandard 2.1

    • No dependencies.
  • net6.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.1.2 109 4/2/2025
2.1.1 77 3/29/2025
2.1.0 107 3/28/2025
2.0.1 249 3/23/2025
2.0.0 244 3/23/2025
1.9.4 138 3/23/2025
1.9.2 157 3/15/2025
1.9.1 161 3/11/2025
1.9.0 159 3/10/2025
1.8.0 114 12/17/2024
1.7.8 103 11/24/2024
1.7.7 89 11/24/2024
1.7.6 92 11/23/2024
1.7.5 101 11/22/2024
1.7.4 166 1/31/2024
1.7.3 116 1/31/2024
1.7.2 114 1/31/2024
1.7.1 116 1/31/2024
1.7.0 98 1/30/2024
1.6.3 120 1/21/2024
1.6.2 112 1/21/2024
1.6.1 117 1/21/2024
1.6.0 112 1/21/2024
1.5.0 115 1/18/2024
1.4.6 130 1/14/2024
1.4.5 118 1/14/2024
1.4.4 118 1/10/2024
1.4.3 111 1/10/2024
1.4.1 114 1/8/2024
1.4.0 106 1/6/2024
1.3.1 99 1/3/2024
1.3.0 123 1/2/2024
1.2.0 161 12/30/2023
1.1.1 120 12/26/2023
1.1.0 139 12/21/2023
1.0.1 142 12/16/2023
1.0.0 143 12/14/2023