test2.cpp

来自「Although there has been a lot of AVL tre」· C++ 代码 · 共 52 行

CPP
52
字号
// Test2.cpp : Defines the entry point for the console application.
//

#include "StdAfx.h"
#include "Test2.h"

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

int _avl_file_test_main();

/////////////////////////////////////////////////////////////////////////////
// The one and only application object

#ifdef _MSC_VER

CWinApp theApp;


using namespace std;

int _tmain(int argc, TCHAR* argv[], TCHAR* envp[])
{
	int nRetCode = 0;

	// initialize MFC and print and error on failure
	if (!AfxWinInit(::GetModuleHandle(NULL), NULL, ::GetCommandLine(), 0))
	{
		// TODO: change error code to suit your needs
		cerr << _T("Fatal Error: MFC initialization failed") << endl;
		nRetCode = 1;
	}
	else
	{
		// TODO: code your application's behavior here.
		_avl_file_test_main();
	}

	return nRetCode;
}

#else

int main()
{
	return _avl_file_test_main();
}

#endif

⌨️ 快捷键说明

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