Skip to content

Commit

Permalink
fix ex9.40
Browse files Browse the repository at this point in the history
shidenggui committed Dec 24, 2014

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 13681f8 commit f3701e3
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions ch09/README.md
Original file line number Diff line number Diff line change
@@ -252,12 +252,10 @@ svec.resize(svec.size()+svec.size()/2); // sets capacity to at least 3/2's size.
## Exercise 9.40:
>If the program in the previous exercise reads 256 words, what is its likely capacity after it is resized? What if it reads 512? 1,000? 1,048?
|reads|capacity|
|-----|--------|
|256 |1024 |
|512 |1024 |
|1000 |1024 |
|1048 |1572 |
read: 256 size: 384 capacity: 1024
read: 512 size: 768 capacity: 1024
read: 1000 size: 1500 capacity: 1500
read: 1048 size: 1572 capacity: 1572

## [Exercise 9.41](ex9_41.cpp)

0 comments on commit f3701e3

Please sign in to comment.