Click here to Skip to main content
15,883,705 members
Articles / Programming Languages / C#

Red-Black Trees in C#

Rate me:
Please Sign up or sign in to vote.
4.82/5 (30 votes)
14 Sep 2004CPOL8 min read 255.7K   5.9K   86  
A C# implementation of a Red-Black Tree.
Microsoft Visual Studio Solution File, Format Version 8.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RedBlackCS", "RedBlackCS.csproj", "{C2816E8D-4CF0-4A84-9EC9-E8B30A0DF1C0}"
	ProjectSection(ProjectDependencies) = postProject
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Test", "Test\Test.csproj", "{0EBF0251-0152-4323-B559-A6164FC9A368}"
	ProjectSection(ProjectDependencies) = postProject
	EndProjectSection
EndProject
Global
	GlobalSection(SolutionConfiguration) = preSolution
		Debug = Debug
		Release = Release
	EndGlobalSection
	GlobalSection(ProjectConfiguration) = postSolution
		{C2816E8D-4CF0-4A84-9EC9-E8B30A0DF1C0}.Debug.ActiveCfg = Debug|.NET
		{C2816E8D-4CF0-4A84-9EC9-E8B30A0DF1C0}.Debug.Build.0 = Debug|.NET
		{C2816E8D-4CF0-4A84-9EC9-E8B30A0DF1C0}.Release.ActiveCfg = Release|.NET
		{C2816E8D-4CF0-4A84-9EC9-E8B30A0DF1C0}.Release.Build.0 = Release|.NET
		{0EBF0251-0152-4323-B559-A6164FC9A368}.Debug.ActiveCfg = Debug|.NET
		{0EBF0251-0152-4323-B559-A6164FC9A368}.Debug.Build.0 = Debug|.NET
		{0EBF0251-0152-4323-B559-A6164FC9A368}.Release.ActiveCfg = Release|.NET
		{0EBF0251-0152-4323-B559-A6164FC9A368}.Release.Build.0 = Release|.NET
	EndGlobalSection
	GlobalSection(ExtensibilityGlobals) = postSolution
	EndGlobalSection
	GlobalSection(ExtensibilityAddIns) = postSolution
	EndGlobalSection
EndGlobal

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect
United States United States
Roy is a software developer who digs all aspects of software development, from design and architecture to implementation.

Comments and Discussions