main.cpp

来自「STL 容器 使用例子 MAP VECTOR LIST」· C++ 代码 · 共 20 行

CPP
20
字号
/*
 *	云中哈哈的测试容器代码 2007.7.17
 */
#include "testVec.h"
#include "testList.h"
#include "testQueue.h"

typedef struct _MyNode {
	int value;
	_MyNode *pNode;
}MyNode,*pMyNode;

void main()
{
	testList();
	
	testvec();

	testQueue();
}

⌨️ 快捷键说明

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