Click here to Skip to main content
15,892,643 members
Articles / DevOps / Load Testing

SortedSplitList - An Indexing Algorithm in C#

Rate me:
Please Sign up or sign in to vote.
4.96/5 (38 votes)
10 Dec 2013CPOL10 min read 47.4K   932   71  
A list for managing tens of millions of objects in your application.

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2012
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SortedSplitList", "SortedSplitList\SortedSplitList.csproj", "{BC7711EF-0A75-4F33-ABEF-4955D5E6900A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Test_SortedSplitList", "Test_SortedSplitList\Test_SortedSplitList.csproj", "{7F305306-1B8A-4BB4-B22E-674FCB5AC9F1}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{BC7711EF-0A75-4F33-ABEF-4955D5E6900A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{BC7711EF-0A75-4F33-ABEF-4955D5E6900A}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{BC7711EF-0A75-4F33-ABEF-4955D5E6900A}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{BC7711EF-0A75-4F33-ABEF-4955D5E6900A}.Release|Any CPU.Build.0 = Release|Any CPU
		{7F305306-1B8A-4BB4-B22E-674FCB5AC9F1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{7F305306-1B8A-4BB4-B22E-674FCB5AC9F1}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{7F305306-1B8A-4BB4-B22E-674FCB5AC9F1}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{7F305306-1B8A-4BB4-B22E-674FCB5AC9F1}.Release|Any CPU.Build.0 = Release|Any CPU
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	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
Software Developer (Senior) DOT SHARK
France (Metropolitan) France (Metropolitan)
Starting from the bottom by assembling PC in small shops, my passion for computers pushed me to grow my skill by learning ever more thanks to books, tests and errors. I manage today a dev crew of 5 engineers for make a health care software, and I am impressed every day by the power of working together. so, computer can change your life for better

Comments and Discussions