ove_0957.htm

来自「ARM编辑、编译软件」· HTM 代码 · 共 122 行

HTM
122
字号
<HTML><HEAD><TITLE>Overview</TITLE></HEAD>
<BODY>
<A HREF="ug.htm"><IMG SRC="images/banner.gif"></A>
<P><STRONG>Click on the banner to return to the user guide home page.</STRONG></P>
<P>&copy;Copyright 1996 Rogue Wave Software</P>
<H2>Overview</H2>
<P>The standard library provides no fewer than ten alternative forms of container.  In this section we will briefly describe the varieties, considering the characteristics of each, and discuss how you might go about selecting which container to use in solving a particular problem.  Subsequent sections will then go over each of the different containers in more detail.</P>
<P>The following chart shows the ten container types provided by the standard library, and gives a short description of the most significant characteristic for each.</P>
<CENTER><TABLE BORDER CELLSPACING=3 CELLPADDING=3>
<TR VALIGN=top>
<TD>
Name<BR>
</TD>

<TD>
Characteristic<BR>
</TD>
</TR>

<TR VALIGN=top>
<TD>
<SAMP>vector</SAMP><BR>
</TD>

<TD>
random access to elements, efficient insertions at end<BR>
</TD>
</TR>

<TR VALIGN=top>
<TD>
<SAMP>list</SAMP><BR>
</TD>

<TD>
efficient insertion and removal throughout<BR>
</TD>
</TR>

<TR VALIGN=top>
<TD>
<SAMP>deque</SAMP><BR>
</TD>

<TD>
random access, efficient insertion at front or back<BR>
</TD>
</TR>

<TR VALIGN=top>
<TD>
<SAMP>set</SAMP><BR>
</TD>

<TD>
elements maintained in order, efficient test for inclusion, insertion and removal<BR>
</TD>
</TR>

<TR VALIGN=top>
<TD>
<SAMP>multiset</SAMP><BR>
</TD>

<TD>
set with repeated copies<BR>
</TD>
</TR>

<TR VALIGN=top>
<TD>
<SAMP>map</SAMP><BR>
</TD>

<TD>
access to values via keys, efficient insertion and removal<BR>
</TD>
</TR>

<TR VALIGN=top>
<TD>
<SAMP>multimap</SAMP><BR>
</TD>

<TD>
map permitting duplicate keys<BR>
</TD>
</TR>

<TR VALIGN=top>
<TD>
<SAMP>stack</SAMP><BR>
</TD>

<TD>
insertions and removals only from top<BR>
</TD>
</TR>

<TR VALIGN=top>
<TD>
<SAMP>queue</SAMP><BR>
</TD>

<TD>
insertion at back, removal from front<BR>
</TD>
</TR>

<TR VALIGN=top>
<TD>
<SAMP>priority queue</SAMP><BR>
</TD>

<TD>
efficient access and removal of largest value<BR>
</TD>
</TR>
</TABLE></CENTER>
<HR>
<A HREF="con_2412.htm"><IMG SRC="images/prev.gif"></A> <A HREF="booktoc.htm"><IMG SRC="images/toc.gif"></A> <A HREF="sel_2116.htm"><IMG SRC="images/next.gif"></A></BODY></HTML>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?