Standard Template Library Programmer's Guide

Здесь есть возможность читать онлайн «Standard Template Library Programmer's Guide» весь текст электронной книги совершенно бесплатно (целиком полную версию без сокращений). В некоторых случаях можно слушать аудио, скачать через торрент в формате fb2 и присутствует краткое содержание. Жанр: Программирование, Справочники, на английском языке. Описание произведения, (предисловие) а так же отзывы посетителей доступны на портале библиотеки ЛибКат.

Standard Template Library Programmer's Guide: краткое содержание, описание и аннотация

Предлагаем к чтению аннотацию, описание, краткое содержание или предисловие (зависит от того, что написал сам автор книги «Standard Template Library Programmer's Guide»). Если вы не нашли необходимую информацию о книге — напишите в комментариях, мы постараемся отыскать её.

This document contains reference on SGI STL implementation

Standard Template Library Programmer's Guide — читать онлайн бесплатно полную книгу (весь текст) целиком

Ниже представлен текст книги, разбитый по страницам. Система сохранения места последней прочитанной страницы, позволяет с удобством читать онлайн бесплатно книгу «Standard Template Library Programmer's Guide», без необходимости каждый раз заново искать на чём Вы остановились. Поставьте закладку, и сможете в любой момент перейти на страницу, на которой закончили чтение.

Тёмная тема
Сбросить

Интервал:

Закладка:

Сделать
Name Expression Type requirements Return type
Fill constructor X(n, t) X
Fill constructor X a(n, t);
Default fill constructor X(n) T is DefaultConstructible. X
Default fill constructor X a(n); T is DefaultConstructible.
Range constructor X(i, j) i and j are Input Iterators whose value type is convertible to T [1] X
Range constructor X a(i, j); i and j are Input Iterators whose value type is convertible to T [1]
Front a.front() reference if a is mutable, const_reference otherwise.
Insert a.insert(p, t) X::iterator
Fill insert a.insert(p, n, t) a is mutable void
Range insert a.insert(p, i, j) i and j are Input Iterators whose value type is convertible to T [1]. a is mutable void
Erase a.erase(p) a is mutable iterator
Range erase a.erase(p,q) a is mutable iterator
Clear a.clear() a is mutable void
Resize a.resize(n, t) a is mutable void
Resize a.resize(n) a is mutable void
Expression semantics

Semantics of an expression is defined only where it is not defined in Forward Container, or where it differs.

Name Expression Precondition Semantics Postcondition
Fill constructor X(n, t) n >= 0 Creates a sequence with n copies of t size() == n . Every element is a copy of t .
Fill constructor X a(n, t); n >= 0 Creates a sequence with n copies of t a.size() == n . Every element of a is a copy of t .
Default fill constructor X(n) n >= 0 Creates a sequence of n elements initialized to a default value. size() == n . Every element is a copy of T() .
Default fill constructor X a(n, t); n >= 0 Creates a sequence with n elements initialized to a default value. a.size() == n . Every element of a is a copy of T() .
Default constructor X a;or X() Equivalent to X(0) . size() == 0.
Range constructor X(i, j) [i,j) is a valid range. Creates a sequence that is a copy of the range [i,j) size() is equal to the distance from i to j . Each element is a copy of the corresponding element in the range [i,j) .
Range constructor X a(i, j); [i,j) is a valid range. Creates a sequence that is a copy of the range [i,j) a.size() is equal to the distance from i to j . Each element in a is a copy of the corresponding element in the range [i,j) .
Front a.front() !a.empty() Equivalent to *(a.first())
Insert a.insert(p, t) p is a valid iterator in a . a.size() < a.max_size() A copy of t is inserted before p . [2] [3] a.size() is incremented by 1. *(a.insert(p,t)) is a copy of t . The relative order of elements already in the sequence is unchanged.
Fill insert a.insert(p, n, t) p is a valid iterator in a . n >= 0 && a.size() + n <= a.max_size() . n copies of t are inserted before p . [2] [3] [4] a.size() is incremented by n. The relative order of elements already in the sequence is unchanged.
Range insert a.insert(p, i, j) [i,j) is a valid range. a.size() plus the distance from i to j does not exceed a.max_size() . Inserts a copy of the range [i,j) before p . [1] [2] [3] a.size() is incremented by the distance from i to j . The relative order of elements already in the sequence is unchanged.
Erase a.erase(p) p is a dereferenceable iterator in a . Destroys the element pointed to by p and removes it from a . [3] a.size() is decremented by 1. The relative order of the other elements in the sequence is unchanged. The return value is an iterator to the element immediately following the one that was erased.
Range erase a.erase(p,q) [p,q) is a valid range in a . Destroys the elements in the range [p,q) and removes them from a . [3] a.size() is decremented by the distance from i to j . The relative order of the other elements in the sequence is unchanged. The return value is an iterator to the element immediately following the ones that were erased.
Clear a.clear() Equivalent to a.erase(a.begin(), a.end())
Resize a.resize(n, t) n <= a.max_size() Modifies the container so that it has exactly n elements, inserting elements at the end or erasing elements from the end if necessary. If any elements are inserted, they are copies of t . If n > a.size() , this expression is equivalent to a.insert(a.end(), n – size(), t) . If n < a.size() , it is equivalent to a.erase(a.begin() + n, a.end()) . a.size() == n
Resize a.resize(n) n <= a.max_size() Equivalent to a.resize(n, T()) . a.size() == n
Complexity guarantees

The fill constructor, default fill constructor, and range constructor are linear.

Front is amortized constant time.

Fill insert, range insert, and range erase are linear.

The complexities of single-element insert and erase are sequence dependent.

Models

• vector [5]

• deque

• list

• slist

Notes

[1] At present (early 1998), not all compilers support "member templates". If your compiler supports member templates then i and j may be of any type that conforms to the Input Iterator requirements. If your compiler does not yet support member templates, however, then i and j must be of type const T* or of type X::const_iterator .

Читать дальше
Тёмная тема
Сбросить

Интервал:

Закладка:

Сделать

Похожие книги на «Standard Template Library Programmer's Guide»

Представляем Вашему вниманию похожие книги на «Standard Template Library Programmer's Guide» списком для выбора. Мы отобрали схожую по названию и смыслу литературу в надежде предоставить читателям больше вариантов отыскать новые, интересные, ещё непрочитанные произведения.


Отзывы о книге «Standard Template Library Programmer's Guide»

Обсуждение, отзывы о книге «Standard Template Library Programmer's Guide» и просто собственные мнения читателей. Оставьте ваши комментарии, напишите, что Вы думаете о произведении, его смысле или главных героях. Укажите что конкретно понравилось, а что нет, и почему Вы так считаете.

x