forward_list ::max_size() es una función integrada en C++ STL que devuelve el número máximo de elementos que puede contener un contenedor de forward_list
Sintaxis:
forward_list_name.max_size()
Parámetros: La función no acepta ningún parámetro.
Valor devuelto: la función devuelve el número máximo de elementos que puede contener el contenedor.
Los siguientes programas ilustran la función anterior:
Programa 1:
// CPP program to demonstrate the // forward_list::max_size() function // when the list is not-empty #include <bits/stdc++.h> using namespace std; int main() { // declaration of forward list forward_list<int> fl; // assign value fl.assign(5, 8); // prints the elements cout << "The forward_list elements: "; for (auto it = fl.begin(); it != fl.end(); it++) cout << *it << " "; cout << "\nThe max size: " << fl.max_size(); return 0; }
Producción:
The forward_list elements: 8 8 8 8 8 The max size: 1152921504606846975
Programa 1:
// CPP program to demonstrate the // forward_list::max_size() function // when the list is empty #include <bits/stdc++.h> using namespace std; int main() { // declaration of forward list forward_list<int> fl; cout << "\nThe max size: " << fl.max_size(); return 0; }
Producción:
The max size: 1152921504606846975