dlinkedlist.cpp

来自「真正的传奇源代码」· C++ 代码 · 共 21 行

CPP
21
字号
/******************************************************************************************************************

	DLinkedList.h: interface for the CDLList class.

*******************************************************************************************************************/

#include "stdafx.h"


template <class T>
CDLList<T>::CDLList(CDLList<T>& DLList)
{
	for ( INT nLoops = 0; nLoops<DLList.ListLength(); nLoops++ )
	{
		T* tempT	= new T;
		tempt->Data = DDList.Current();
		AddNode(tempT);
	}
}

⌨️ 快捷键说明

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