本文整理汇总了C++中DoubleLinkedList::InsertAfter方法的典型用法代码示例。如果您正苦于以下问题:C++ DoubleLinkedList::InsertAfter方法的具体用法?C++ DoubleLinkedList::InsertAfter怎么用?C++ DoubleLinkedList::InsertAfter使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DoubleLinkedList
的用法示例。
在下文中一共展示了DoubleLinkedList::InsertAfter方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: TestInsertAfter
void TestInsertAfter()
{
DoubleLinkedList<int> clist;
std::cout << "\n********** Testing: DoubleLinkedList InsertAfter **********" << std::endl;
std::cout << "\n********** Testing: InsertAfter with Empty List **********" << std::endl;
try
{
//Note: Here is the function signature so you can determine the order of parameters
//void DoubleLinkedList<T>::InsertAfter(const T & new_data, const T & existing_data)
clist.InsertAfter(-1, 0);
}
catch(const char * msg)
{
std::cout << msg << std::endl;
}
std::cout << "\n********** Testing: InsertAfter tail with only one node **********" << std::endl;
clist.Append(0);
clist.InsertAfter(1, 0);
std::cout << clist.First() << std::endl;
std::cout << clist.Last() << std::endl;
std::cout << "\n********** Testing: InsertAfter tail with multiple nodes **********" << std::endl;
clist.InsertAfter(3, 1);
std::cout << clist.First() << std::endl;
std::cout << clist.Last() << std::endl;
std::cout << "\n********** Testing: InsertAfter a node in the middle of the list **********" << std::endl;
clist.InsertAfter(2, 1);
std::cout << clist.First() << std::endl;
std::cout << clist.Last() << std::endl;
std::cout << "\n********** Testing: InsertAfter but existing_data doesn't exist **********" << std::endl;
try
{
clist.InsertAfter(-2, 99);
}
catch (const char * msg)
{
std::cout << msg << std::endl;
}
}
示例2: TestInsertAfter
void TestInsertAfter()
{
DoubleLinkedList<int> clist;
std::cout << "\n********** InsertAfter **********" << std::endl;
try
{
clist.InsertAfter(-1, 0);
}
catch (char * msg)
{
std::cout << msg << std::endl;
}
// Head and Tail are the same
clist.Append(0);
clist.InsertAfter(1, 0);
std::cout << clist.First() << std::endl;
std::cout << clist.Last() << std::endl;
// After Tail
clist.InsertAfter(3, 1);
std::cout << clist.First() << std::endl;
std::cout << clist.Last() << std::endl;
// Middle
clist.InsertAfter(2, 1);
std::cout << clist.First() << std::endl;
std::cout << clist.Last() << std::endl;
// Node doesn't exist
try
{
clist.InsertAfter(-2, 99);
}
catch (char * msg)
{
std::cout << msg << std::endl;
}
}