当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ forward_list::clear()、forward_list::erase_after()用法及代码示例



转发列表在STL中实现单链表。从C++ 11引入的前向列表在插入,删除和移动操作(如排序)方面比其他容器有用,并且允许时间常数插入和删除元素。它与列表的不同之处在于前向列表会跟踪对象的位置仅list的下一个元素同时跟踪下一个和上一个元素。

forward_list::clear()

clear()函数用于删除转发列表容器的所有元素,从而使其大小为0。
用法:

forwardlistname.clear()
参数:
No parameters are passed.
Result:
All the elements of the forward list are
removed ( or destroyed )

例子:


Input :flist{1, 2, 3, 4, 5};
         flist.clear();
Output:flist{}

Input :flist{};
         flist.clear();
Output:flist{}

错误和异常

1.它没有异常抛出保证。
2.传递参数时显示错误。

// CPP program to illustrate 
// Implementation of clear() function 
#include <forward_list> 
#include <iostream> 
using namespace std; 
  
int main() 
{ 
    forward_list<int> myflist{ 1, 2, 3, 4, 5 }; 
  
    myflist.clear(); 
    // Forward List becomes empty 
  
    // Printing the Forward list 
    for (auto it = myflist.begin(); it != myflist.end(); ++it) 
        cout << ' ' << *it; 
    return 0; 
}

输出:

No Output
forward_list::erase_after()

erase-after()函数用于从指定位置或范围旁边的容器中删除元素。

用法:

1. flistname.erase_after(position)
2. flistname.erase_after(startingposition, endingposition)
参数:
Position previous of the element to be removed in the form of iterator.
or the range specified using start and end iterator.
Result:
Elements are removed from the next
position of the container.

例子:

Input :flist{1, 2, 3, 4, 5}, iterator= 2
         flist.erase_after(iterator);
Output:1, 2, 3, 5

Input :flist{1, 2, 3, 4, 5, 6, 7, 8}, iterator1= 3, iterator2= 6
         flist.erase(iterator1, iterator2);
Output:1, 2, 3, 8

错误和异常

1.如果位置有效,则没有异常抛出保证。
2.否则显示未定义的行为。

从特定位置移除元件

// CPP program to illustrate 
// Implementation of erase_after() function 
#include <forward_list> 
#include <iostream> 
using namespace std; 
  
int main() 
{ 
    forward_list<int> myflist{ 1, 2, 3, 4, 5 }; 
    forward_list<int>::iterator it; 
  
    it = myflist.begin(); 
    myflist.erase_after(it); 
  
    // Printing the forward list 
    for (auto it = myflist.begin(); it != myflist.end(); ++it) 
        cout << ' ' << *it; 
    return 0; 
}

输出:

1 3 4 5

删除范围内的元素

// CPP program to illustrate 
// Implementation of erase_after() function 
#include <forward_list> 
#include <iostream> 
using namespace std; 
  
int main() 
{ 
    forward_list<int> myflist{ 1, 2, 3, 4, 5 }; 
    forward_list<int>::iterator it1, it2; 
  
    it1 = myflist.begin(); 
    it2 = myflist.end(); 
  
    myflist.erase_after(it1, it2); 
  
    // Printing the forward list 
    for (auto it = myflist.begin(); it != myflist.end(); ++it) 
        cout << ' ' << *it; 
    return 0; 
}

输出:

1


相关用法


注:本文由纯净天空筛选整理自AyushSaxena大神的英文原创作品 forward_list::clear() and forward_list::erase_after() in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。