📄 v3_slide0377.htm
字号:
<html>
<head>
<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
<meta name=ProgId content=PowerPoint.Slide>
<meta name=Generator content="Microsoft PowerPoint 10">
<link id=Main-File rel=Main-File href="../roadtrip99.htm">
<link rel=Preview href=preview.wmf>
<!--[if !mso]>
<style>
v\:* {behavior:url(#default#VML);}
o\:* {behavior:url(#default#VML);}
p\:* {behavior:url(#default#VML);}
.shape {behavior:url(#default#VML);}
v\:textbox {display:none;}
</style>
<![endif]-->
<title>Embracing the C++ STL</title>
<meta name=Description content="4/2/2002: Copying Containers">
<link rel=next href="v3_slide0378.htm">
</head>
<body background="v3_master19_background.gif" bgcolor="#333399" alink="#9999FF"
link="#99CCFF" vlink="#0066FF" text="#CCECFF" topmargin=0 leftmargin=0>
<table border=0 valign=top width=475 height=356 cellpadding=0 cellspacing=0>
<tr>
<td width=17 height=0 nowrap><img src="v3_space.gif" border=0></td>
<td width=23 height=0 nowrap><img src="v3_space.gif" border=0></td>
<td width=70 height=0 nowrap><img src="v3_space.gif" border=0></td>
<td width=168 height=0 nowrap><img src="v3_space.gif" border=0></td>
<td width=174 height=0 nowrap><img src="v3_space.gif" border=0></td>
</tr>
<tr>
<td width=475 height=34 colspan=6></td>
</tr>
<tr>
<td width=17 height=36></td>
<td width=261 height=36 colspan=3>
<table border=0 valign=top cellpadding=0 cellspacing=0>
<tr>
<td width=261 height=36><font face=Tahoma color="#CCFFFF" size=5>Copying
Containers</font><br>
</td>
</tr>
</table>
</td>
<td width=197 height=36 colspan=2></td>
</tr>
<tr>
<td width=475 height=15 colspan=6></td>
</tr>
<tr>
<td width=40 height=212 colspan=2></td>
<td width=412 height=212 colspan=3>
<table border=0 valign=top cellpadding=0 cellspacing=0>
<tr>
<td width=18 height=0 nowrap><img src="v3_space.gif" border=0></td>
<td width=1 height=0 nowrap><img src="v3_space.gif" border=0></td>
<td width=5 height=0 nowrap><img src="v3_space.gif" border=0></td>
<td width=146 height=0 nowrap><img src="v3_space.gif" border=0></td>
<td width=130 height=0 nowrap><img src="v3_space.gif" border=0></td>
<td width=45 height=0 nowrap><img src="v3_space.gif" border=0></td>
<td width=8 height=0 nowrap><img src="v3_space.gif" border=0></td>
<td width=14 height=0 nowrap><img src="v3_space.gif" border=0></td>
<td width=41 height=0 nowrap><img src="v3_space.gif" border=0></td>
</tr>
<tr>
<td width=18 height=26><font face="Monotype Sorts" color="#0066FF" size=2>n</font></td>
<td width=390 height=26 colspan=8><font face=Tahoma size=4>The wrong way;
copy() can抰 add elems</font><br>
</td>
<td width=4 height=26></td>
</tr>
<tr>
<td width=412 height=16 colspan=10></td>
</tr>
<tr>
<td width=24 height=14 colspan=3></td>
<td width=343 height=14 colspan=5><font face="Courier New" size=1><b>copy(v.begin(),
v.end(), nv.begin()); </b></font><font face="Courier New" color="#33CC33"
size=1><b>// uh-oh</b></font><br>
</td>
<td width=45 height=14 colspan=2></td>
</tr>
<tr>
<td width=412 height=18 colspan=10></td>
</tr>
<tr>
<td width=18 height=26><font face="Monotype Sorts" color="#0066FF" size=2>n</font></td>
<td width=152 height=26 colspan=3><font face=Tahoma size=4>Better and best</font><br>
</td>
<td width=242 height=26 colspan=6></td>
</tr>
<tr>
<td width=412 height=16 colspan=10></td>
</tr>
<tr>
<td width=24 height=14 colspan=3></td>
<td width=329 height=14 colspan=4><font face="Courier New" size=1><b>nv.resize(v.size());
</b></font><font face="Courier New" color="#33CC33" size=1><b>// size of nv
matches v</b></font><br>
</td>
<td width=59 height=14 colspan=3></td>
</tr>
<tr>
<td width=412 height=4 colspan=10></td>
</tr>
<tr>
<td width=24 height=14 colspan=3></td>
<td width=276 height=14 colspan=2><font face="Courier New" size=1><b>copy(v.begin(),
v.end(), nv.begin());</b></font><br>
</td>
<td width=112 height=14 colspan=5></td>
</tr>
<tr>
<td width=412 height=16 colspan=10></td>
</tr>
<tr>
<td width=24 height=14 colspan=3></td>
<td width=329 height=14 colspan=4><font face="Courier New" size=1><b>copy(v.begin(),
v.end(), back_inserter(nv));</b></font><br>
</td>
<td width=59 height=14 colspan=3></td>
</tr>
<tr>
<td width=412 height=3 colspan=10></td>
</tr>
<tr>
<td width=24 height=14 colspan=3></td>
<td width=321 height=14 colspan=3><font face="Courier New" size=1><b>copy(m.begin(),
m.end(), insert_iterator<T></b></font><br>
</td>
<td width=67 height=14 colspan=4></td>
</tr>
<tr>
<td width=412 height=3 colspan=10></td>
</tr>
<tr>
<td width=24 height=14 colspan=3></td>
<td width=388 height=14 colspan=7><font face="Courier New" size=1><b><span
style='mso-spacerun:yes'>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -