Click here to Skip to main content
15,892,059 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 256.1K   5.9K   86  
A C# implementation of a Red-Black Tree.
using RedBlackCS;

namespace Test
{
	public class MyObj
	{
		private int     intMyObjKey;
		private string  myData;
		
		public int Key
		{
			get
            {
				return intMyObjKey;
			}
			
			set
			{
				intMyObjKey = value;
			}
		}
		public string Data
		{
			get
            {
				return myData;
			}
			
			set
			{
				myData = value;
			}
		}
		
		public MyObj(int key, string data) 
        {
			this.Key    = key;
			this.Data   = data;
		}
		
		public override string ToString()
		{
			return intMyObjKey.ToString();
		}
	}
}

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