Click here to Skip to main content
15,881,803 members
Articles / Desktop Programming / MFC

Extend collections

Rate me:
Please Sign up or sign in to vote.
3.27/5 (7 votes)
11 Dec 1999 87.5K   1.6K   24  
Extended Collection classes to provide copy, compare and find operations with 2 dimensional arrays and maps
//=========================================================
//	TITLE:		Sorted array
//				for WinNT, MSVC 6.0, MFC 6.00
//				Copyright (C) Matrix Baltic Software
//				Vilnius, Lithuania
//	MODULE:		SortedArray.cpp
//	PURPOSE:	Implementation of the CSortedArray class.
//
//	AUTHOR:		Audrius Vasiliauskas
// 
//	NOTES:		TYPE: must have copy constructor, operator =, and operator <
//
//=========================================================



#include "stdafx.h"

#ifndef __SORTED_ARRAY_H__
	#include "SortedArray.h"
#endif

#ifdef _DEBUG
	#undef THIS_FILE
	static char THIS_FILE[]=__FILE__;
	#define new DEBUG_NEW
#endif


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 has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Technical Lead Doclogix
Lithuania Lithuania
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions