Home Backend Development C#.Net Tutorial Examples of how to use STL list in C++

Examples of how to use STL list in C++

Apr 12, 2017 pm 03:03 PM
list stl

This article mainly introduces the detailed explanation and simple examples of STL list in C++. Friends who need it can refer to it

The detailed explanation of STL list in C++

1. List: The internal implementation is a doubly linked list, which can efficiently perform insertion and deletion, but cannot perform random access

2. Sample program:


#include "stdafx.h" 
#include <iostream> 
#include <list> 
#include <iterator> 
#include <algorithm> 
using namespace std; 
const int num[5] = {1,3,2,4,5}; 
bool status(const int & value) 
{ 
 return value>6?true:false; 
} 
int _tmain(int argc, _TCHAR* argv[]) 
{ 
 list<int> list1; 
 copy(num,num+5,back_insert_iterator<list<int>>(list1)); 
 copy(list1.begin(),list1.end(),ostream_iterator<int>(cout," ")); 
 cout<<endl; 
 list1.sort(greater<int>());//5 4 3 2 1 
 copy(list1.begin(),list1.end(),ostream_iterator<int>(cout," ")); 
 cout<<endl; 
 list<int>::iterator it = list1.begin(); 
 while (it != list1.end()) 
 { 
  (*it) += 2; 
  it++; 
 } 
 //7 6 5 4 3 
 list<int>::reverse_iterator re_it = list1.rbegin(); 
 cout<<"从后向前输出: "; 
 while (re_it != list1.rend()) 
 { 
  cout<<*re_it<<" "; 
  re_it++; 
 } 
 cout<<endl; 
 list1.reverse();// 3 4 5 6 7 
 list1.push_back(8);//3 4 5 6 7 8 
 list1.pop_front();//4 5 6 7 8 
 list1.remove(6);//4 5 7 8 
 list1.remove_if(status);// 4 5 
 list1.resize(4);// 4 5 0 0 
 list1.resize(6,1);// 4 5 0 0 1 1 
 list1.unique();//4 5 0 1 
 copy(list1.begin(),list1.end(),ostream_iterator<int>(cout," ")); 
 cout<<endl; 
 list1.clear(); 
 cout<<"当前list1含有元素个数:"<<list1.size()<<endl; 
 list1.push_back(7);//list1:7 
 list<int> list2(3,2);//2 2 2 
 list2.merge(list1,greater<int>());//list2: 7 2 2 2 
 list2.insert(++list2.begin(),3);//list2: 7 3 2 2 2 
 list2.swap(list1);//list1:7 3 2 2 2 list2:empty 
 list1.erase(++list1.begin(),list1.end());// 7 
 copy(list1.begin(),list1.end(),ostream_iterator<int>(cout," ")); 
 cout<<endl; 
 system("pause"); 
}
Copy after login

Run result picture:


3. List method

##destructorDestructor##operator=assignfrontbackbeginendrbeginrendpush_backpush_frontpop_backpop_frontcleareraseremove remove_if empty
##list members

Description

constructor

Constructor

##Assignment overloaded operator

Assign value

Returns a reference to the first element

Returns a reference to the last element

Returns the iterator of the first element

Returns the iterator at the next position of the last element

Returns the backward pointer reverse_iterator of the last element of the linked list

Return the reverse_iterator at the next position of the first element of the linked list

Add a data to the end of the linked list

Add a data to the head of the linked list

Delete an element at the end of the linked list

Delete one element from the head of the linked list

Delete all elements

Delete an element or a range of elements (two overloads)

Delete elements with matching values ​​in the linked list (all matching elements are deleted)

Delete elements that meet the conditions (traverse the linked list once), the parameter is a custom callback function

Determine whether the linked list is empty

##max_size
Return The maximum possible length of the linked list

size
Returns the number of elements in the linked list

resize
Redefine the length of the linked list (two overloaded functions)

reverse
Reverse linked list

sort
Sort the linked list , default ascending order

merge
Merge two ordered linked lists and make them ordered

splice
Combine two linked lists (three overloaded functions) and clear the second linked list after combining

insert
Insert one or more elements at the specified position (three overloaded functions)

swap
Swap two linked lists (two overloads)

unique
Delete adjacent duplicate elements

The above is the detailed content of Examples of how to use STL list in C++. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to implement a custom comparator in C++ STL? How to implement a custom comparator in C++ STL? Jun 05, 2024 am 11:50 AM

Implementing a custom comparator can be accomplished by creating a class that overloads operator(), which accepts two parameters and indicates the result of the comparison. For example, the StringLengthComparator class sorts strings by comparing their lengths: Create a class and overload operator(), returning a Boolean value indicating the comparison result. Using custom comparators for sorting in container algorithms. Custom comparators allow us to sort or compare data based on custom criteria, even if we need to use custom comparison criteria.

How to implement Redis List operation in php How to implement Redis List operation in php May 26, 2023 am 11:51 AM

List operation //Insert a value from the head of the list. $ret=$redis->lPush('city','guangzhou');//Insert a value from the end of the list. $ret=$redis->rPush('city','guangzhou');//Get the elements in the specified range of the list. 0 represents the first element of the list, -1 represents the last element, and -2 represents the penultimate element. $ret=$redis->l

How to get the size of a C++ STL container? How to get the size of a C++ STL container? Jun 05, 2024 pm 06:20 PM

You can get the number of elements in a container by using the container's size() member function. For example, the size() function of the vector container returns the number of elements, the size() function of the list container returns the number of elements, the length() function of the string container returns the number of characters, and the capacity() function of the deque container returns the number of allocated memory blocks.

How to design custom STL function objects to improve code reusability? How to design custom STL function objects to improve code reusability? Apr 25, 2024 pm 02:57 PM

Using STL function objects can improve reusability and includes the following steps: Define the function object interface (create a class and inherit from std::unary_function or std::binary_function) Overload operator() to define the function behavior in the overloaded operator() Implement the required functionality using function objects via STL algorithms (such as std::transform)

How to deal with hash collisions when using C++ STL? How to deal with hash collisions when using C++ STL? Jun 01, 2024 am 11:06 AM

The methods for handling C++STL hash conflicts are: chain address method: using linked lists to store conflicting elements, which has good applicability. Open addressing method: Find available locations in the bucket to store elements. The sub-methods are: Linear detection: Find the next available location in sequence. Quadratic Detection: Search by skipping positions in quadratic form.

How to use C++ STL to achieve code readability and maintainability? How to use C++ STL to achieve code readability and maintainability? Jun 04, 2024 pm 06:08 PM

By using the C++ Standard Template Library (STL), we can improve the readability and maintainability of the code: 1. Use containers to replace primitive arrays to improve type safety and memory management; 2. Use algorithms to simplify complex tasks and improve efficiency; 3. .Use iterators to enhance traversal and simplify code; 4.Use smart pointers to improve memory management and reduce memory leaks and dangling pointers.

How to sort C++ STL containers? How to sort C++ STL containers? Jun 02, 2024 pm 08:22 PM

How to sort STL containers in C++: Use the sort() function to sort containers in place, such as std::vector. Using the ordered containers std::set and std::map, elements are automatically sorted on insertion. For a custom sort order, you can use a custom comparator class, such as sorting a vector of strings alphabetically.

How to convert JSONArray to List in Java How to convert JSONArray to List in Java May 04, 2023 pm 05:25 PM

1: JSONArray to ListJSONArray string to List//Initialize JSONArrayJSONArrayarray=newJSONArray();array.add(0,"a");array.add(1,"b");array.add(2,"c") ;Listlist=JSONObject.parseArray(array.toJSONString(),String.class);System.out.println(list.to

See all articles