Skip to content

shzy2012/JsonTree

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

JsonTree

Create , find , list mapping to json tree

data structures

Left--[self]-{child1,child2,... childn}

  public class Node
    {
        public int Left { get; set; }

        public int Key { get; set; }

        public List<Node> Children { get; set; }
    }

Json Print

alt tag

About

Create , find , Add

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages