Click here to Skip to main content
15,895,011 members
Articles / Programming Languages / C#

Back to Basics - Generic Data Structures and Algorithms In .NET 2.0

Rate me:
Please Sign up or sign in to vote.
4.96/5 (93 votes)
23 Apr 2007Ms-PL15 min read 279.5K   2.6K   300  
Implementations of generic data structures and algorithms in .NET 2.0.
using System;
using System.Collections.Generic;
using System.Text;
using System.Collections;
using DataStructuresDotNet.Visitors;

namespace DataStructuresDotNet.DataStructures
{ 
	/// <summary>
	/// The interface for a custom collection, extending the standard ICollection interface.
	/// </summary>
	/// <typeparam name="T"></typeparam>
	public interface IVisitableCollection<T> : ICollection<T>, IEnumerable<T>, IComparable, IVisitable<T>
	{
		/// <summary>
		/// Gets a value indicating whether this instance is of a fixed size.
		/// </summary>
		/// <value>
		/// 	<c>true</c> if this instance is fixed size; otherwise, <c>false</c>.
		/// </value>
		bool IsFixedSize { get;}
		
		/// <summary>
		/// Gets a value indicating whether this collection is empty.
		/// </summary>
		/// <value><c>true</c> if this collection is empty; otherwise, <c>false</c>.</value>
		bool IsEmpty { get;}

		/// <summary>
		/// Gets a value indicating whether this collection is full.
		/// </summary>
		/// <value><c>true</c> if this collection is full; otherwise, <c>false</c>.</value>
		bool IsFull { get;}
	}
}

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 Microsoft Public License (Ms-PL)


Written By
Web Developer
South Africa South Africa
The author is a software consultant in South Africa, specializing in bespoke software solutions.

Comments and Discussions