slide027.html
来自「《Big C++ 》Third Edition电子书和代码全集-Part1」· HTML 代码 · 共 44 行
HTML
44 行
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="blendTrans(Duration=2)" http-equiv="Page-Enter">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="Copyright" content="2005 John Wiley & Sons">
<meta name="Author" content="Kurt Schmidt">
<script language="JavaScript" src="./config.js"></script>
<script language="JavaScript" src="./pageFormat.js"></script>
<script><!-- // Set title on page
title()
//--></script>
</head>
<body>
<div onclick="document.location='slide028.html'">
<h2><font color="#009999">23.3 <tt>stack</tt> implementation (cont.)
</font></h2>
<font size="+1">
<ul>
<li><tt>values</tt> attribute is the actual container</li>
<li><tt>stack</tt> takes two type arguments</li>
<li>The 2nd argument is the type of the underlying container</li>
<li>The default value depends on the first argument</li>
<li>The default container for both <tt>stack</tt> and <tt>queue</tt> is a
<tt>deque</tt></li>
<li>For <tt>stack</tt> it can also be <tt>vector</tt></li>
<li>A <tt>queue</tt> can also be built on a <tt>list</tt></li>
</ul>
</font>
<hr>
<center><small>
<a href='slide026.html'>prev</a>
|<a href='slide001.html'>top</a>
|<a href='slide028.html'>next</a>
</small></center>
</div>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?