本文整理汇总了C++中MyList::removeFirst方法的典型用法代码示例。如果您正苦于以下问题:C++ MyList::removeFirst方法的具体用法?C++ MyList::removeFirst怎么用?C++ MyList::removeFirst使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MyList
的用法示例。
在下文中一共展示了MyList::removeFirst方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: main
void main()
{
cout<<"hello myList:"<<endl;
MyList list;
cout<<"定义一个链表对象。"<<endl;
cout<<"删除链表首元素"<<endl;
list.removeFirst();
int a = 1;
cout<<"加入元素1"<<endl;
list.add(a);
a = 2;
cout<<"加入元素2"<<endl;
list.add(a);
a = 3;
cout<<"加入元素3"<<endl;
list.add(a);
cout<<"长度:"<<list.length<<endl;
cout<<"用length从头察看链表元素结果如下:"<<endl;
MyListNode* p = list.first;
for(int i = 0; i < list.length; i ++)
{
cout<<p->element<<',';
p = p->next;
}
cout<<endl;
cout<<"用最后一个元素是否为空从头察看链表元素结果如下:"<<endl;
for(p = list.first; p != NULL; p = p->next)
{
cout<<p->element<<',';
}
cout<<endl;
cout<<"开始去掉首元素"<<endl;
list.removeFirst();
cout<<"长度:"<<list.length<<endl;
cout<<"开始去掉所有元素"<<endl;
//for(int j = 0; j < list.length; j ++)//注意length也是动态变化的
while(list.length != 0)
{
list.removeFirst();
}
cout<<"长度:"<<list.length<<endl;
cout<<"再删除链表首元素"<<endl;
list.removeFirst();
cout<<"测试完毕!"<<endl;
}