sortedkeyarray.cpp

来自「新的二维数组以及映射的快速算法的C语言实现.」· C++ 代码 · 共 30 行

CPP
30
字号
//=========================================================
//	TITLE:		Sorted array
//				for WinNT, MSVC 6.0, MFC 6.00
//				Copyright (C) Matrix Baltic Software
//				Vilnius, Lithuania
//	MODULE:	SortedKeyArray.cpp
//	PURPOSE:	Implementation of the CSortedArray class.
//
//	AUTHOR:		Audrius Vasiliauskas
// 
//	NOTES:		TYPE: must have copy constructor, operator =, and operator <
//
//=========================================================



#include "stdafx.h"

#ifndef __SORTED_KEY_ARRAY_H__
	#include "SortedKeyArray.h"
#endif

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


⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?