Lecture 5 | Programming Abstractions (Stanford)
-
0:00 - 0:09
-
0:09 - 0:12This presentation is delivered by the Stanford Center for Professional Development.
-
0:12 - 0:22
-
0:22 - 0:25Okay, anything administratively you'd like to ask about? How many people
-
0:25 - 0:29have completed assignment 1, and done the whole thing?
-
0:29 - 0:32All right, you get a gold star. All right,
-
0:32 - 0:36you guys want to be him, is what it is, because this guys is getting to go skiing guilt free. You
-
0:36 - 0:39guys if you're going skiing won't be guilt free, and
-
0:39 - 0:42you'll be working late to finish it off, and he
-
0:42 - 0:44is sleeping easy.
-
0:44 - 0:47How many people have at least one or two of the problems done?
-
0:47 - 0:51Okay, that's a good number.
-
0:51 - 0:54We're still making progress.
-
0:54 - 0:57So I had just started to talk a little about this idea of a template,
-
0:57 - 1:02which is the C++ equivalent of the Java generic,
-
1:02 - 1:03and I
-
1:03 - 1:07want to refresh on the rules about how do you use a template. The thing about templates
-
1:07 - 1:10is they're a very useful and practical
-
1:10 - 1:11component to have in the language,
-
1:11 - 1:14but they do have a little bit of issues with resolve to when you make mistakes
-
1:14 - 1:17with them, kinda having it reported and how you learn about them, and so they can be a
-
1:17 - 1:21little bit of a tripping point despite their vast utility.
-
1:21 - 1:24Let me just remind you about what it means to use a template; is that you use
-
1:24 - 1:27include the interface file as usual. We're trying to use a vector to hold some
-
1:27 - 1:30sequence of things, so we include the vector.H.
-
1:30 - 1:32The name vector
-
1:32 - 1:36by itself without specialization doesn't tell the compiler everything
-
1:36 - 1:38it needs to know. When you're trying to
-
1:38 - 1:42[inaudible] declare a vector, pass a vector as a parameter, return one, and any
-
1:42 - 1:45of those situations where you would have wanted to say it's a vector, you have to
-
1:45 - 1:48say what kind of vector, it's a vector holding character, it's a vector holding
-
1:48 - 1:49location T's, it's
-
1:49 - 1:50a vector holding
-
1:50 - 1:51doubles.
-
1:51 - 1:54And that just applies everywhere you use the name vector, the name vector by itself
-
1:54 - 1:57doesn't mean anything. It always has to have this qualification or specialization on
-
1:57 - 1:58it.
-
1:58 - 2:02And then once that you've committed that to the compiler, the
-
2:02 - 2:05vector from that point really behaves in a type safe manner. A vector
-
2:05 - 2:08character is not the same thing as a vector holding doubles. The
-
2:08 - 2:11compiler keeps those things separate. It doesn't let you co-mingle them.
-
2:11 - 2:14If you expect a vector of care, and you say that as your parameter,
-
2:14 - 2:17then you will have to pass one that has the same element type in it,
-
2:17 - 2:21that passing a vector double is not this same thing, and so trying to put a double
-
2:21 - 2:23into a vector of characters or
-
2:23 - 2:26retrieve an integer out of one that's holding
-
2:26 - 2:30student structures, is going to give you compiler errors, which is really
-
2:30 - 2:34a nice feature for maintaining type safety.
-
2:34 - 2:38So the vector class I had just started talking about, and I'm gonna just kinda pick up
-
2:38 - 2:42and review the things we had started to talk about on Wednesday and go through
-
2:42 - 2:42it,
-
2:42 - 2:44which is what is the vector good for?
-
2:44 - 2:47The vector is good for any
-
2:47 - 2:50collection of things. You need to store a list is kind of the
-
2:50 - 2:53abstraction that it's trying to model. I have a list of students in this class, I have
-
2:53 - 2:56a list of problems that are being assigned, I have
-
2:56 - 2:59a list of classes I'm taking this quarter, you know, whatever those things
-
2:59 - 3:02are, a list of scores on an exam,
-
3:02 - 3:04and the vector
-
3:04 - 3:06manages the needs of all of those kinds of lists. You say what kind of thing
-
3:06 - 3:09you're storing in it. Every element has to be the same type, so that's what I mean by
-
3:09 - 3:13homogeneous, that all the elements are double or they're all students. You
-
3:13 - 3:15can't have doubles and students co-mingle.
-
3:15 - 3:20It's linear in the effect that it kinda lays them out in a line. It indexes them from zero
-
3:20 - 3:21to the size minus 1.
-
3:21 - 3:25Each one has a place in the line and there are no gaps in it, so it actually is
-
3:25 - 3:26sequenced out.
-
3:26 - 3:30And it doesn't - a lot of things that make for a really convenient handling of the
-
3:30 - 3:33list as an abstraction, it knows its size at all time. You can ask it what the
-
3:33 - 3:36size is, it'll tell me how your elements have been stored in it. Now
-
3:36 - 3:39if you ask for an element by index it bounds checks to make sure that you
-
3:39 - 3:43gave it a valid index for the range of size that it's currently holding.
-
3:43 - 3:45It handles all the storage for you. If
-
3:45 - 3:48you put ten elements and to put an eleventh, if it doesn't have space it goes
-
3:48 - 3:52and makes space for you. This all happens without you doing anything explicit, so
-
3:52 - 3:55as you add things, as you remove things, it handles sizing and
-
3:55 - 3:59changing whatever internal storage needs as needed to accommodate what you asked
-
3:59 - 4:00you.
-
4:00 - 4:03It has convenient operations for inserting and removing; where you want to put
-
4:03 - 4:07something in a slot, it will move everything over to make space for it or to shuffle it down to
-
4:07 - 4:09close over that space.
-
4:09 - 4:11It also does what we call a deep copy; a
-
4:11 - 4:13deep copy is
-
4:13 - 4:17sort of a CS term for if I have a vector holding ten numbers,
-
4:17 - 4:19and I assign that to another vector,
-
4:19 - 4:23it really does make a new vector that has the same ten numbers. That deep copy means
-
4:23 - 4:27it's more than some sort of shallow, like they're sharing something. They really are
-
4:27 - 4:30creating a clone of it, so taking that same - however big that vector is, whether it
-
4:30 - 4:33has a hundred or a thousand or two entries,
-
4:33 - 4:36it makes a whole copy, a parallel copy that has
-
4:36 - 4:38the same size and the same entries
-
4:38 - 4:43that was based on taking the original input and reproducing it in a new vector.
-
4:43 - 4:46And that happens when you do assignment from one vector to another, it happens
-
4:46 - 4:50when you do a cast by value of a vector into a function that takes a vector by
-
4:50 - 4:50value,
-
4:50 - 4:54or when you return a vector from a function, so in all those cases it's doing kinda
-
4:54 - 4:56a full deep copy
-
4:56 - 4:57that
-
4:57 - 5:00is unlike those of you had a little experience working with a built in
-
5:00 - 5:03array, know that it doesn't have those behaviors, and that comes as a little bit of
-
5:03 - 5:06a surprise. The vector behaves just like the primitives in the sense that
-
5:06 - 5:07there's no special
-
5:07 - 5:10knowledge you need to know about how it's -
-
5:10 - 5:14the assignment affects other copies of the same vector.
-
5:14 - 5:17So your typical usage is you create an empty vector, you add a new insert;
-
5:17 - 5:21remove to kind of jostle of the contents. You can access the elements
-
5:21 - 5:25once they're in there using member function setat and getat that allow you to
-
5:25 - 5:27change the value of the location, or get the value.
-
5:27 - 5:31There's also an operator bracket. We'll see how you can actually just use the
-
5:31 - 5:34syntax of the vector name and then the bracket with the index to access a
-
5:34 - 5:35particular element,
-
5:35 - 5:37useful for all
-
5:37 - 5:39sorts of things.
-
5:39 - 5:41Question here?
-
5:41 - 5:43Student:Yeah, can you make a multi-dimensional vector? Instructor
-
5:43 - 5:47(Julie Zelenski):You can make a vector or vectors. The next class I'll talk about is a grid, which is kind of just a tooty thing that is
-
5:47 - 5:47already built,
-
5:47 - 5:50and you can also build vectors of vectors, and vectors
-
5:50 - 5:53of vectors of vectors to build to the higher and higher dimensions. And there's a
-
5:53 - 5:56little bit more syntax involved in doing that, but it [inaudible] the same basic functionality
-
5:56 - 6:00kind of applies in higher dimension.
-
6:00 - 6:03So this is the basic interface of the vector,
-
6:03 - 6:05supplied as a template, so
-
6:05 - 6:09all the way through it, it refers to elem type as what you get
-
6:09 - 6:13at, what you set at, what you add and you insert all of the kind of values that are
-
6:13 - 6:14going in and out of that
-
6:14 - 6:15vector are
-
6:15 - 6:19left using this place holder rather than saying it's explicitly a double or a
-
6:19 - 6:22string or something, making no commitment about that, just leaving it open. And then
-
6:22 - 6:25that template typed in elem type is the way that the whole class is introduced to
-
6:25 - 6:25say
-
6:25 - 6:30this is a pattern from which you can create a lot of different vector classes.
-
6:30 - 6:33Let me show you a little something on the next slide that helps to
-
6:33 - 6:34point this out.
-
6:34 - 6:38So here I have, in blue, put all the places where the elem type shows up. I
-
6:38 - 6:42put the type name parameter introduced, and it says within the body of the class I'm using
-
6:42 - 6:44elem type as a place
-
6:44 - 6:47holder, and the four places it's showing up here, the getat the setat the add and
-
6:47 - 6:48the insert,
-
6:48 - 6:53that when I go to create a vector as a client, I'll say vector of double.
-
6:53 - 6:56Every place where there was elem type
-
6:56 - 6:57
-
6:57 - 7:01and on the vector name itself has been annotated or specialized to show
-
7:01 - 7:04that what's really going in out of this thing is double.
-
7:04 - 7:08So this now created a class vector, angle bracket, double.
-
7:08 - 7:12The constructor and the destructor match the class name now, and the getat, the setat,
-
7:12 - 7:13the add, the insert,
-
7:13 - 7:16all have been locked down. We've made that commitment, we said what we're
-
7:16 - 7:18storing here really is vectors of
-
7:18 - 7:22doubles, and that means that the add number function for vector double takes
-
7:22 - 7:23a double parameter.
-
7:23 - 7:26The getat returns a double value,
-
7:26 - 7:30and that way once the compiler has done this transformation
-
7:30 - 7:33that subsequent usage of that vector double variable
-
7:33 - 7:37will be consistent with this filling in of the placeholder,
-
7:37 - 7:40so it doesn't actually get confused about other types of
-
7:40 - 7:40vectors you may have
-
7:40 - 7:45been creating or working with.
-
7:45 - 7:50Question? [Inaudible] No, these empty functions are really just a convenience off of size. You could
-
7:50 - 7:52always check size equals zero,
-
7:52 - 7:54and so it actually doesn't really add anything to the interface.
-
7:54 - 7:58It just turns out you do that so often in many situations, you want to know if
-
7:58 - 7:59this thing is totally empty,
-
7:59 - 8:03that as a convenience it offers two different ways to get at that same information. So you're
-
8:03 - 8:04totally right, it's redundant.
-
8:04 - 8:08Sometimes you'll see that for example the standard template library has a bunch of
-
8:08 - 8:09the same things. The string has
-
8:09 - 8:13a length number function. It also has a size number function. They do exactly the same thing. It's
-
8:13 - 8:16just because sometimes people can remember size, sometimes people remember length. There's
-
8:16 - 8:17also an empty -
-
8:17 - 8:19it's not called is empty, but it's just empty. The
-
8:19 - 8:22[inaudible] is the length or size zero, and so all of those things are kind of written in
-
8:22 - 8:23terms of each other,
-
8:23 - 8:25but they
-
8:25 - 8:28allow different ways to get at the same information.
-
8:28 - 8:30Anything
-
8:30 - 8:32else? You got a question? Here we go.
-
8:32 - 8:34Is there a remove all method?
-
8:34 - 8:39There is actually a clear method, and I should have put that up there. Actually, I think
-
8:39 - 8:42there's a few. In each of these cases I've excerpted a little bit for the most
-
8:42 - 8:45mainstream operations, but there is a clear operation that takes no arguments,
-
8:45 - 8:46returns no argument, that just
-
8:46 - 8:55takes the vector to an empty state.
-
8:55 - 8:56So here's a little bit of
-
8:56 - 8:56code
-
8:56 - 9:00that shows some of the common use of vector and how you might do stuff with it
-
9:00 - 9:03that just gets you familiar with, okay, what does the syntax look like?
-
9:03 - 9:07So I'll look at this top function together, this is make random vector. You give it a
-
9:07 - 9:10parameter, which is the size, and it will fill a vector of integers with a sequence
-
9:10 - 9:15of random numbers up to that size. You say I'd like a length ten vector filled with
-
9:15 - 9:16random numbers,
-
9:16 - 9:18it'll make a ten number vector
-
9:18 - 9:19stuffing in
-
9:19 - 9:23random numbers generated using the random library here.
-
9:23 - 9:26So you'll see the declaration here, so I included vector [inaudible], the compiler knew what
-
9:26 - 9:29I was using. I
-
9:29 - 9:30specialized
-
9:30 - 9:32when I declared that vector,
-
9:32 - 9:36and so the constructor for vector creates a new empty vector of
-
9:36 - 9:38that type, in this case vector of integer,
-
9:38 - 9:42and then numbers.add sticking in a bunch of numbers, and then I'm returning it.
-
9:42 - 9:46So it's totally valid to actually return a vector as the return value coming out of
-
9:46 - 9:47a function.
-
9:47 - 9:48It'll take that,
-
9:48 - 9:52however many numbers I put in there, ten length vector,
-
9:52 - 9:53and make a full copy of it.
-
9:53 - 9:56And then when I'm down here and I'm saying nums equals make random vector, it actually
-
9:56 - 9:57copied
-
9:57 - 9:59that ten number vector
-
9:59 - 10:03into the variable beings stored in main. So now I have a ten number
-
10:03 - 10:04thing with some random contents.
-
10:04 - 10:07The next thing I did with it was pass it to another routine that was going to print
-
10:07 - 10:08it,
-
10:08 - 10:11and there I am getting that vector, and this time I'm
-
10:11 - 10:12accessing it in here
-
10:12 - 10:14by reference.
-
10:14 - 10:18This is just to show you that in typical because of the deep copying semantics it
-
10:18 - 10:20does mean if I didn't pass by reference, it means the
-
10:20 - 10:25full contents of the vector would get copied when I passed it to some function.
-
10:25 - 10:26There's no
-
10:26 - 10:30harm in that per se, other than the fact that it can get inefficient, especially as the
-
10:30 - 10:33vector gets larger, it has hundreds and thousands of entries,
-
10:33 - 10:34that making a full copy of those
-
10:34 - 10:38can have some overall efficiency effects on the program.
-
10:38 - 10:40Passing by reference means it didn't really copy;
-
10:40 - 10:44it just kinda used the copy that was out here by reference, so reaching
-
10:44 - 10:47out and accessing it out of [inaudible].
-
10:47 - 10:51So in here using the size to know how many elements are in the vector,
-
10:51 - 10:54and then this is what's called an overloaded operator, that the
-
10:54 - 10:57square brackets that you have seen in the past, user array access and the
-
10:57 - 10:59languages you know,
-
10:59 - 11:01can be applied to the vector,
-
11:01 - 11:05and it uses the same sort of syntax that we put an integer in that tells you what index and
-
11:05 - 11:08indices from zero to size minus one are the valid range for
-
11:08 - 11:12the vector, and accessed that integer and printed it out.
-
11:12 - 11:15So anything you would have done on any kind of array,
-
11:15 - 11:18reading a bunch of contents from a file,
-
11:18 - 11:21printing these things out, rearranging them into sorted order, inserting
-
11:21 - 11:22something into sorted order,
-
11:22 - 11:24all those things are
-
11:24 - 11:28operations that work very cleanly when mapped onto what the vector provides. One
-
11:28 - 11:31of the really nice things is unlike most array,
-
11:31 - 11:33like the built in array of C++,
-
11:33 - 11:36you don't have to know in advance how big the vector's gonna be, it just grows
-
11:36 - 11:37on demand.
-
11:37 - 11:42So if you were reading a bunch of numbers from a file, like you are in your assignment 1,
-
11:42 - 11:45you don't have to have figured out ahead of time how many numbers will be there
-
11:45 - 11:48so that I can allocate the storage and set it aside. You just keep calling
-
11:48 - 11:50v.dot add on your vector,
-
11:50 - 11:51and as needed it's just making space.
-
11:51 - 11:55So if there's ten numbers in the file, there's a hundred, there's a million,
-
11:55 - 11:57it will just make the space on demand
-
11:57 - 12:05and you don't have to do anything special to get that access. Question? [Inaudible] The square brackets. No, the [inaudible]. Oh, the
-
12:05 - 12:07angle
-
12:07 - 12:11brackets. Yeah, they turn the side
-
12:11 - 12:14of it and then - no? No, no. The angle brackets are used in this case just for the vector
-
12:14 - 12:15specialization.
-
12:15 - 12:18The square brackets here are being used for -
-
12:18 - 12:23I'm accessing a particular member out of the array by index. [Inaudible]
-
12:23 - 12:26So yeah, what happens in - so if you look at make random vector,
-
12:26 - 12:30it created an empty vector, so the typical usage [inaudible] is you create it empty
-
12:30 - 12:32and then you add things to grow it.
-
12:32 - 12:36So you actually never in here actually have to say how big it's going to be. It
-
12:36 - 12:38just - on demand as I call
-
12:38 - 12:41numbers.add, it got one bigger each time through that loop, and if I did that
-
12:41 - 12:44100 times, that'll have a hundred entry vector.
-
12:44 - 12:45So there isn't actually a mechanism where you say
-
12:45 - 12:48make it a hundred in advance. You will add a hundred things; it will have length
-
12:48 - 12:50a hundred,
-
12:50 - 12:53if you inserted a hundred things. The add me insert both
-
12:53 - 12:58cause the size of the vector to go up by one, remove caused to go down by one. [Inaudible] brackets
-
12:58 - 12:59to
-
12:59 - 13:02access a specific element and write to it
-
13:02 - 13:07and it's not yet at the - will it automatically fill in [inaudible]? No, it will not, so
-
13:07 - 13:12the sub - the square brackets can only access things that are in the vector already. So you can
-
13:12 - 13:15overwrite it if it's there, but if you have a ten-member vector, and you go to
-
13:15 - 13:17say V sub 20,
-
13:17 - 13:18it will not sort of
-
13:18 - 13:21invent the ten members in between there and make that space. So the things that are
-
13:21 - 13:24valid to access to read from are the same ones that are valid to write to, so you
-
13:24 - 13:25can use the square
-
13:25 - 13:29bracket on either side of the assignment operator to read or to write, but it has
-
13:29 - 13:31to still be something that's already in there. If you really want to put
-
13:31 - 13:34a hundred zeros into it, then you need to write a loop that puts a hundred zeros into
-
13:34 - 13:36it
-
13:36 - 13:39using
-
13:39 - 13:40
-
13:40 - 13:44add. Way in the back. [Inaudible] Only for efficiency in
-
13:44 - 13:47this case. I'm not changing it, so if I
-
13:47 - 13:50was planning on going in here and multiplying everything by two or something,
-
13:50 - 13:53I would do that pass by reference to see those changes permanently affected. This
-
13:53 - 13:56actually isn't making any changes to the vector, it's just reading the contents of it,
-
13:56 - 13:59so it could be pass by value and have the same
-
13:59 - 14:03effect, but I wouldn't see any change in the program, it would just run a little slower
-
14:03 - 14:04if I did that.
-
14:04 - 14:07We will typically though - you will see that kinda just by
-
14:07 - 14:09habit we will almost always pass our
-
14:09 - 14:11collections by reference,
-
14:11 - 14:14because of the concern for efficiency in the long run.
-
14:14 - 14:17So it - even though we don't plan on changing it,
-
14:17 - 14:21we'll use that to save ourselves some
-
14:21 - 14:24time. Anything about
-
14:24 - 14:28vector?
-
14:28 - 14:29[Inaudible]
-
14:29 - 14:32The second to the last line before printing,
-
14:32 - 14:35the one right here where I'm going the - so this is declaring vector [inaudible], so
-
14:35 - 14:37making the new variable, and it's assigning it
-
14:37 - 14:41the return value from calling the make random vector function. So it's actually
-
14:41 - 14:43declaring and assigning it in one step
-
14:43 - 14:46where that assignment caused a function to be called that stuffed it full of random
-
14:46 - 14:50numbers and returned it. Ten in that case means what?
-
14:50 - 14:54Ten in this case is just the size. It's the [inaudible]
-
14:54 - 14:56make me a random vector containing ten values,
-
14:56 - 14:59so that's - the ten in this case is just how many things to put in the array.
-
14:59 - 15:01[Inaudible]
-
15:01 - 15:04Well it will make ten random numbers and stick them into the
-
15:04 - 15:08vector, so when you get back you'll have vector of size ten that has ten random
-
15:08 - 15:09entries in it.
-
15:09 - 15:13If I said a hundred I'd get a hundred random entries. [Inaudible] function, which library has it? It is in random.H,
-
15:13 - 15:14so
-
15:14 - 15:17
-
15:17 - 15:19a lower
-
15:19 - 15:27case random.H, which is R cs1061. Okay. Now
-
15:27 - 15:29let me
-
15:29 - 15:33reinforce this idea that templates are type safe, and that if you misuse them
-
15:33 - 15:34
-
15:34 - 15:36you will get errors from the complier
-
15:36 - 15:39that help you to alert yourself to the mistakes that you've made. If I
-
15:39 - 15:41make a vector
-
15:41 - 15:44specialized to hold [inaudible] is really an integer vector, I make a vector
-
15:44 - 15:47to hold strings I call words, that
-
15:47 - 15:51I could add integers into the first one, I could add words to the second one, but I can't
-
15:51 - 15:54cross those lines. If I try to take nums
-
15:54 - 15:55and add to it the string banana,
-
15:55 - 15:57it will not compile,
-
15:57 - 15:59so it has a very strong notion of the
-
15:59 - 16:04add operation on this kind of vector accepts this kind of thing. So if it's a
-
16:04 - 16:08vector of strings, the add accepts strings. If it's a vector of [inaudible] add accepts integers,
-
16:08 - 16:11and the crossing of that will cause compiler errors.
-
16:11 - 16:15Similarly, when I'm trying to get something out of a vector,
-
16:15 - 16:19that return value is typed for what you put in it. If you have a vector of
-
16:19 - 16:21strings, then what you return is strings, not characters.
-
16:21 - 16:23Or trying to do, kind of
-
16:23 - 16:26take one vector; one vector is not equivalent to another if their base
-
16:26 - 16:29types are not the same. So a vector of doubles
-
16:29 - 16:32is not the same thing as a vector of integers. And so if I have a function
-
16:32 - 16:35that expects one or tries to use on, it really [inaudible] a vector of in, a
-
16:35 - 16:38vector of in is not the same thing as a vector of doubles,
-
16:38 - 16:41and the complier will not let you kind of mix those things up.
-
16:41 - 16:43So it provides pretty
-
16:43 - 16:44good
-
16:44 - 16:47error messages in these cases. It's a, here's
-
16:47 - 16:49how you've gotten your types
-
16:49 - 16:53confused.
-
16:53 - 16:56[Inaudible] double bracket number and then -
-
16:56 - 16:59Yeah, so if this said vector angle bracket [inaudible] then it would fine, then I would
-
16:59 - 17:02just be making a copy of the nums into a new variable S that had a
-
17:02 - 17:04complete same content that nums did.
-
17:04 - 17:07So that would be totally fine. I can definitely do assignment from one vector to another if they
-
17:07 - 17:09are of the same type,
-
17:09 - 17:12but vector in is not the same thing as vector double which is not the same
-
17:12 - 17:14thing as vector string, and so
-
17:14 - 17:16it's - basically it means that -
-
17:16 - 17:19what the template is, is a patter for which you can make a bunch of classes, and on demand
-
17:19 - 17:22it makes new classes, the vector double, the vector in, the vector string. And each
-
17:22 - 17:26of those is distinct from the other ones that have been created. Can I change the types of
-
17:26 - 17:27nums in
-
17:27 - 17:28the
-
17:28 - 17:30expression and then - You cannot type [inaudible],
-
17:30 - 17:33so it's not like I can type cast it down, they really are just different things and they're
-
17:33 - 17:36stored differently, ints are a different size and doubles, so there's a bunch more things that
-
17:36 - 17:37it
-
17:37 - 17:40will just not do automatically in that case. If I really wanted to try to take a bunch of
-
17:40 - 17:44integers and put them into a vector or doubles, I would end up
-
17:44 - 17:48having to kind of do a one by one, take each int, convert it to a double and stick it into a new vector to get that effect.
-
17:48 - 17:50Somebody in the back had something going on? Same question.
-
17:50 - 17:56Same question, okay, so then we're good. Let me tell you a
-
17:56 - 17:57little bit about grid,
-
17:57 - 18:00which is just the extension of vector into two dimensions. Somebody asked
-
18:00 - 18:03about this a minute ago, which is like, well can we do this? We can still [inaudible] vectors
-
18:03 - 18:04of vectors
-
18:04 - 18:07as one way of getting into two dimension, but often what you have is really a
-
18:07 - 18:11rectangular region, where the number of rows and columns is fixed all the way
-
18:11 - 18:12across,
-
18:12 - 18:15in which case it might be convenient to have something like grid
-
18:15 - 18:18that you just specify how big you want, how many rows, how many columns, and then
-
18:18 - 18:19you get
-
18:19 - 18:20a full
-
18:20 - 18:222D
-
18:22 - 18:24matrix to hold those values.
-
18:24 - 18:27So it is something that you set the dimensions of the constructors, you
-
18:27 - 18:28make a new grid on int that
-
18:28 - 18:30has ten rows and ten columns.
-
18:30 - 18:34There actually is a number function resize that lets you later change the number of
-
18:34 - 18:37rows and columns,
-
18:37 - 18:41but typically you tend to actually - once you set it, it tends to stay that way.
-
18:41 - 18:47You have access to each element by row and column, so you say I want the to getat
-
18:47 - 18:50this row, this column, it will return you the value that's been stored there.
-
18:50 - 18:54And I put it over here; it says elements have default [inaudible].
-
18:54 - 18:57So if you say I want a ten by ten grid of integers,
-
18:57 - 19:01then it does create a full ten by ten grid of integers. If you ask it to retrieve the value at any of
-
19:01 - 19:03those locations before you set them, they have
-
19:03 - 19:05the same contents that
-
19:05 - 19:08an integer declared of the stack would have, which is to say random.
-
19:08 - 19:10So they're not zero, they're not negative one, they're not anything
-
19:10 - 19:13special. They're whatever - kind of if you just have int setting around, what is its
-
19:13 - 19:15default value?
-
19:15 - 19:18For the primitive types that just means it's random. For some of the
-
19:18 - 19:21more fancy types like string, it would mean they have the default value for
-
19:21 - 19:25string, which is the empty string. So if I'm in a 2D grid of strings, then all the
-
19:25 - 19:29strings would be empty until I explicitly did something to set and assign their
-
19:29 - 19:30value.
-
19:30 - 19:33So there's a getat setat pair that looks very much like the vector form that takes, in this
-
19:33 - 19:35case, two arguments of the row and the column.
-
19:35 - 19:38There's also an operator parens
-
19:38 - 19:43that lets you say grid of parans, row column and separated by comma. I'll show that
-
19:43 - 19:44syntax in just a second.
-
19:44 - 19:47It does do full deep copying, the same way the vector does, which is if you
-
19:47 - 19:51have a ten by ten grid which has a hundred members, when you pass or
-
19:51 - 19:56return it by value, or you assign it, it has a full copy of that hundred member grid.
-
19:56 - 20:00Lots of things sort of fit into the world of the grids
-
20:00 - 20:03utility, any kind of game ward, you're doing battleship, you're doing a Sudoku, you're doing
-
20:03 - 20:06a crossword puzzle,
-
20:06 - 20:08designing a maze,
-
20:08 - 20:11managing the data behind an image or any kind of mathematical matrix, or sort of table
-
20:11 - 20:16tend to fit in the model for what a grid is good for.
-
20:16 - 20:19This is the interface for grid,
-
20:19 - 20:21so a template like vector was.
-
20:21 - 20:23It has two different constructors;
-
20:23 - 20:29one that is a little bit of an oddity. This one creates a zero row, zero
-
20:29 - 20:30column
-
20:30 - 20:32grids, totally empty,
-
20:32 - 20:34which then you would later
-
20:34 - 20:38most likely be making a resize call to change the number of rows and columns. That
-
20:38 - 20:41might be useful in a situation where you need to create the grid before you kind of have information
-
20:41 - 20:43about how to size it.
-
20:43 - 20:47You can alternatively specify with a constructor the number of rows and
-
20:47 - 20:50calls from the get go and have it set up,
-
20:50 - 20:52and then you can later ask it for the number of rows and calls
-
20:52 - 20:55and then you can getat and setat a
-
20:55 - 20:58particular element within that grid
-
20:58 - 21:01using those. There's also an operator - I'm not showing you the syntax in these for
-
21:01 - 21:04the operator open parens, just because it's a little bit goopy, but I'll show you in the
-
21:04 - 21:07client usage that
-
21:07 - 21:11shows you how it works from that perspective.
-
21:11 - 21:14So this is something let's say like maybe I'm playing a tic tac toe game and I
-
21:14 - 21:18was gonna use the grid to hold the three by three board that has x's and
-
21:18 - 21:22o's in it, and I want to start it off by having all of them have the space character.
-
21:22 - 21:24So I'm going to using characters at each slot,
-
21:24 - 21:28I create a board of three three, so this is the way you invoke a construction in
-
21:28 - 21:30C++ that takes argument.
-
21:30 - 21:32If you have no arguments, you don't have the parens or anything, you just have
-
21:32 - 21:37the name, but if it does take one or more arguments, you'll open the paren and
-
21:37 - 21:40list them out in order. In this case, the three and three being the number of rows and
-
21:40 - 21:41columns.
-
21:41 - 21:42And so at this point
-
21:42 - 21:44I will have a
-
21:44 - 21:47grid that has num rows three, num columns three, it has nine entries in it, and they're all
-
21:47 - 21:49garbage.
-
21:49 - 21:51Whatever characters that were left over in that place in memory is what actually
-
21:51 - 21:53will be at each location.
-
21:53 - 21:56And then I did a nested four loop over the rows and columns,
-
21:56 - 21:59and here I am showing you the syntax for the
-
21:59 - 22:02access to the row column in kind of a shorthand form
-
22:02 - 22:04where I say board of
-
22:04 - 22:07and then parens bro , column = space.
-
22:07 - 22:11Equivalently that could have been the member function setat board. Setat
-
22:11 - 22:15row column space to accomplish the same result.
-
22:15 - 22:17So this is still like vector sub I,
-
22:17 - 22:20it can be used to read or to write.
-
22:20 - 22:23It does bounced checking to make sure that row and column are greater than or
-
22:23 - 22:26equal to zero and less than the
-
22:26 - 22:28number of rows or number of columns respectively.
-
22:28 - 22:32So it raises an error if you ever get outside the bounds of the
-
22:32 - 22:35grid. And then this return at the end just returns that full grid.
-
22:35 - 22:37In this case, the nine
-
22:37 - 22:39by entry, three by three
-
22:39 - 22:48back to someone else who's gonna store it and so something with it.
-
22:48 - 22:50
-
22:50 - 22:51[Inaudible]
-
22:51 - 22:55
-
22:55 - 22:58
-
22:58 - 23:01There is actual one distinction between a vector and a vector of a grid that's kinda interesting,
-
23:01 - 23:04the grid is rectangular, it forces there to be
-
23:04 - 23:07exactly the same number of rows and column kind of for the whole thing. That
-
23:07 - 23:09a vector - if you created a vector of vector,
-
23:09 - 23:13you could individually size each row as needed. This could have ten, this
-
23:13 - 23:16could have three, and so like a vector vector might be interesting if you
-
23:16 - 23:20had something - well they call that kind of the ragged right behavior, where they
-
23:20 - 23:23don't all line up over here. But if you really have something that's tabular,
-
23:23 - 23:26that there is a rectangular shape to it, the grid is going to
-
23:26 - 23:28be a little bit easier to get it up and running,
-
23:28 - 23:30but the vector vector's certainly would work, but
-
23:30 - 23:32if you were doing
-
23:32 - 23:34an array of
-
23:34 - 23:38class lists where some classes have ten and some classes have four hundred, but
-
23:38 - 23:41if you tried to do that with a grid you'd have to size the whole thing to
-
23:41 - 23:48have a much larger row dimension than was needed in most cases.
-
23:48 - 23:50So there's no square bracket operator?
-
23:50 - 23:53There is not, and there is kinda an obscure reason for that, and if you are curious,
-
23:53 - 23:56you can come to the cafe afterwards, and I'll tell you why it is,
-
23:56 - 23:58but
-
23:58 - 24:01some of the syntax you may have seen in the past has two square brackets, you say sub
-
24:01 - 24:03row, sub column,
-
24:03 - 24:07and to have that work on a class in C++
-
24:07 - 24:08doesn't - it's not as clean. So it
-
24:08 - 24:11turns out we use the parens, because it turns out as a cleaner was of
-
24:11 - 24:14accomplishing the thing we wanted, which was a short hand access into
-
24:14 - 24:15there.
-
24:15 - 24:21So it doesn't actually use the square bracket operator. Question here?
-
24:21 - 24:22[Inaudible] when
-
24:22 - 24:25you
-
24:25 - 24:27created support three by three and you
-
24:27 - 24:32said it was forced to be a square, so why would you ever have to
-
24:32 - 24:35enter the second? It's forced to be rectangular; it's not forced to be square. It could be three by ten, so I could
-
24:35 - 24:38have three rows by ten columns, but
-
24:38 - 24:40it does mean that every row has the same number of columns, but the row
-
24:40 - 24:44and number of rows and columns doesn't have to be equal, I'm sorry. [Inaudible] if I made squares, the
-
24:44 - 24:52wrong word really rectangular is it. So
-
24:52 - 24:54then I'm gonna very quickly tell you these last two and they're actually even easier to
-
24:54 - 24:57get your head around, because they're actually just simplified versions of
-
24:57 - 25:00something you already know, which is to take the vector
-
25:00 - 25:02and actually limit what you can do with it
-
25:02 - 25:05to produce the stack in the queue class.
-
25:05 - 25:06It
-
25:06 - 25:09seems like kind of a strange thing to do if you already had a class that did something, why
-
25:09 - 25:12would you want to dumb it down, but there actually are some good reasons that I'll hopefully
-
25:12 - 25:15convince you of that why we have a stack and a queue.
-
25:15 - 25:17So what a stack is about is modeling
-
25:17 - 25:21the real world concept of a stack. If you have a stack of papers or a stack
-
25:21 - 25:22of plates
-
25:22 - 25:24you come and you put new things on the top of that
-
25:24 - 25:28and then when it's time to take one off you take the top one. All right, so you don't dig
-
25:28 - 25:30through the bottom of the stack, you don't reach over to the bottom. So if you
-
25:30 - 25:32go up to get
-
25:32 - 25:33
-
25:33 - 25:36a plate in the cafeteria you just take the one that's on the top. When they put new
-
25:36 - 25:38clean ones they stick them on the top.
-
25:38 - 25:40So this
-
25:40 - 25:45could be - you could take a vector and model exactly that behavior where all the
-
25:45 - 25:49edits to that - all the additions and remove operations have to happen on the
-
25:49 - 25:50top or one end of the vector,
-
25:50 - 25:53and that's basically what a stack does. Is
-
25:53 - 25:56it provides something that looks like a vector
-
25:56 - 25:59but that only allows you access to the top end of the stack.
-
25:59 - 26:01It has the operation push
-
26:01 - 26:04which is to say put a new thing on the top of the stack.
-
26:04 - 26:08It has the operation pop, which is remove the top most element on the stack,
-
26:08 - 26:11and there's actually a peak operation that looks at what's on the top without
-
26:11 - 26:12removing it.
-
26:12 - 26:15There is no access to anything further down.
-
26:15 - 26:18If you want to see at the bottom or what's in the middle, the stack
-
26:18 - 26:22doesn't let you do it. It gives a kind of a little window to look at this
-
26:22 - 26:23information
-
26:23 - 26:25that's restricted.
-
26:25 - 26:28That seems a little bit strange,
-
26:28 - 26:31why is it when you want - like sometimes you could do that with a
-
26:31 - 26:34vector by always adding to the end and always forcing yourself to remove from the
-
26:34 - 26:34end,
-
26:34 - 26:37but then just ignoring the fact that you could dig through the other parts of the vector. And
-
26:37 - 26:38
-
26:38 - 26:41there are a few really good reasons to have the stack around, because there are certain
-
26:41 - 26:44things that really are stack based operations. A good example of is like if
-
26:44 - 26:46you are
-
26:46 - 26:48doing the web browser history
-
26:48 - 26:49when you can walk forward,
-
26:49 - 26:51but then you can back up.
-
26:51 - 26:54You don't need to be able to jump all the way back to the end, you're just going back
-
26:54 - 26:57in time. Or if you undoing the actions in a word processors, you type some things
-
26:57 - 26:58and you undo it,
-
26:58 - 27:02that you always undo the last most operations before you undo things before
-
27:02 - 27:05that. And having it be a vector where you can kind of did through it means there's a chance
-
27:05 - 27:08you could make a mistake. You could accidently pull from the wrong end or do
-
27:08 - 27:08something
-
27:08 - 27:11that you didn't intend. By having the stack it kinda forces you to use it the way
-
27:11 - 27:15you said you planned on, which is I'm only going to stack on the end, I'm going to
-
27:15 - 27:17remove from the end.
-
27:17 - 27:18So it lets you model
-
27:18 - 27:22this particular kind of limited access vector
-
27:22 - 27:23in a way that
-
27:23 - 27:26prevents you from making mistakes, and also very clearly indicates to someone reading
-
27:26 - 27:28your code what you were doing.
-
27:28 - 27:31So for example, stacks are very well known to all computer scientists. It's one of the
-
27:31 - 27:33classic data structures.
-
27:33 - 27:36We think of, for example, the function calls as a stack.
-
27:36 - 27:40You call main which calls binky which calls winky, well winky comes back and
-
27:40 - 27:41finishes, we get back to
-
27:41 - 27:45the binky call, we go back to main, then it always goes in this last in, first out,
-
27:45 - 27:46that
-
27:46 - 27:47the last thing we started
-
27:47 - 27:51is the first one to undo and go backwards to as we work our way back
-
27:51 - 27:53down to the bottom of the stack.
-
27:53 - 27:56And so computer scientists have a very strong notion of what a stack is. You declare
-
27:56 - 27:59something as a stack and that immediately says to them, I see how you're
-
27:59 - 28:03using this. You plan on adding to the end and removing from that same end.
-
28:03 - 28:06So you can do things like reversal sequence very easily.
-
28:06 - 28:09Put it all on the stack, pop it all off, it came back in the opposite order you put it on.
-
28:09 - 28:13You put ABC on you'll get CBA off. If I put
-
28:13 - 28:165 3 12 on, I'll get 12 3 5 off. So anytime I needed to do a
-
28:16 - 28:19reversing thing, a stack is a great place to just temporarily throw it and then
-
28:19 - 28:21pull it back out.
-
28:21 - 28:25Managing any sequence of [inaudible] action, the moves and again, the keystrokes in your
-
28:25 - 28:27edits you've made in the
-
28:27 - 28:30word processor, tracking the history when your web browsing of where
-
28:30 - 28:32you've been and where you want to back up to
-
28:32 - 28:36are all stack based activities.
-
28:36 - 28:39So if you look at stack, it actually has an even simpler interface than vector for
-
28:39 - 28:41that matter.
-
28:41 - 28:45It has the corresponding size n is empty, so you'll see a lot of repetition
-
28:45 - 28:49throughout the interface where we could reuse names that you already know
-
28:49 - 28:52and have meaning for, we just reproduce them
-
28:52 - 28:55from class to class, so there's a size that tells you how many things are on the
-
28:55 - 28:58stack, and is empty, that tells you whether the size is zero,
-
28:58 - 29:01and then the push and pop operations that add something
-
29:01 - 29:02and remove it.
-
29:02 - 29:05And they don't allow you to specify where it goes; it is assumed it's going on the top of the
-
29:05 - 29:08stack, and then that peak that lets you look at what's on the top without
-
29:08 - 29:15removing it.
-
29:15 - 29:18Yeah? So if you
-
29:18 - 29:19[inaudible] that had
-
29:19 - 29:22nothing in it, would you just get - You get an error. So these guys are very bullet proof. One of the things we tried to do in
-
29:22 - 29:24designing our interface was give you a simple
-
29:24 - 29:27model you can follow, but also if you step out of the boundaries of what we
-
29:27 - 29:28know to be acceptable,
-
29:28 - 29:33we really stop hard and fast. So if you try to pop from an empty stacker, peak at an
-
29:33 - 29:35empty stack, it will print and error and halt your program. It
-
29:35 - 29:42won't make it up, it won't guess, it won't - [Inaudible]
-
29:42 - 29:46Well, so the stack knows its size and it [inaudible] is empty,
-
29:46 - 29:50so when you're unloading a stack you'll typically be in a loop like, well the
-
29:50 - 29:52stacks not empty, pop.
-
29:52 - 29:54So there's definitely ways you can check ahead of time to know whether there is something
-
29:54 - 29:56there or not, and
-
29:56 - 29:58it's all managed as part of the stack.
-
29:58 - 30:01But if you blow it and you try to reach into the stack that's empty,
-
30:01 - 30:02
-
30:02 - 30:03it won't let you get away with it.
-
30:03 - 30:07And that's really what you want. That means that they run a little slower
-
30:07 - 30:10than the counterparts in the standard library, but
-
30:10 - 30:13they never let you make that kind of mistake without
-
30:13 - 30:16alerting you to it, where as the standard library will actually respond a little
-
30:16 - 30:19bit less graciously. It would be more likely to just make it up.
-
30:19 - 30:20You tell it to pop
-
30:20 - 30:22and the
-
30:22 - 30:22contract is, yeah,
-
30:22 - 30:27I'll return you something if I feel like it and it may be what - it may
-
30:27 - 30:29be something that actually misleads you into thinking there was some valid contents
-
30:29 - 30:33on the stack and causes the error to kinda propagate further before you realize
-
30:33 - 30:35how far you've
-
30:35 - 30:39come from what its real genesis was. So one of the nice things about reporting the error
-
30:39 - 30:40at the first
-
30:40 - 30:45glance is it gives you the best information about how to fix it.
-
30:45 - 30:48So here's something that just uses the stack to invert
-
30:48 - 30:48
-
30:48 - 30:50a string in this case, right,
-
30:50 - 30:53something a user typed in. So I
-
30:53 - 30:56prompted for them to enter something for me, I get that line
-
30:56 - 30:58and then I create a stack of characters.
-
30:58 - 31:02So the stack in this case is being created empty and then I take each
-
31:02 - 31:03character one by
-
31:03 - 31:07one from the first to the last and push it onto the stack, and so if they
-
31:07 - 31:07answered
-
31:07 - 31:10Hello, then we would put H-E-L-L-O on the stack.
-
31:10 - 31:12And then print it backwards,
-
31:12 - 31:16well the stack is not empty I pop and print it back out, so I'll get
-
31:16 - 31:16
-
31:16 - 31:18O-L-L-E-H back out of that
-
31:18 - 31:20and the loop will exit when it has emptied the
-
31:20 - 31:26stack completely.
-
31:26 - 31:30
-
31:30 - 31:32Stack [inaudible] just is
-
31:32 - 31:34a simpler form of that. The
-
31:34 - 31:37queue is just the cousin of the stack.
-
31:37 - 31:39Same sort of idea is that
-
31:39 - 31:42there's certain usage patterns for a vector
-
31:42 - 31:47that form kind of their own class that's worth kinda giving a
-
31:47 - 31:50name to and building an abstraction around, the queue.
-
31:50 - 31:54The queue instead of being last in first out is first in first out. So the first
-
31:54 - 31:56thing you add into the queue
-
31:56 - 32:00is going to be the first one you remove. So you add at the front - you
-
32:00 - 32:03add at the back and you remove from the front, it models a waiting line.
-
32:03 - 32:07So if you think of lets say the head of the queue and tail,
-
32:07 - 32:11or the front or the back of the line, that A was placed in the queue first,
-
32:11 - 32:13that operation's called n queue;
-
32:13 - 32:16n queue A, n queue B, n queue C, n queue D,
-
32:16 - 32:21and then when you d queue, which is the remove operation on a queue, it will pull the
-
32:21 - 32:22oldest thing in the queue, the one that was there
-
32:22 - 32:24first who's been waiting the longest.
-
32:24 - 32:30So removing the A and then next d queue will give you that B and so on. So
-
32:30 - 32:33it does what you think of as your classic waiting line.
-
32:33 - 32:35You're at the bank waiting for a teller.
-
32:35 - 32:38The keystrokes that you're typing are being likely stored in something
-
32:38 - 32:42that's queue like, setting up the jobs for a printer so that
-
32:42 - 32:45there's fair access to it, where first come, first served,
-
32:45 - 32:48and there's a couple kind of search [inaudible] that actually tend to use queue
-
32:48 - 32:51as the way to kind of keep track of where you are.
-
32:51 - 32:54So again, I could use vector for this,
-
32:54 - 32:58just making a deal with myself that I'll add at one end and I'll always remove the zero with
-
32:58 - 32:59element,
-
32:59 - 33:00but again,
-
33:00 - 33:03the effect is that if somebody sees me using a vector,
-
33:03 - 33:06that they'd have to look at the code more closely
-
33:06 - 33:10to see all my access to it, when I add, and when I remove to verify that I was
-
33:10 - 33:12using it in a queue like manner, that I always
-
33:12 - 33:14add it to the back an remove from the front.
-
33:14 - 33:16If I say it's a queue,
-
33:16 - 33:20they know that there is no other access than the n queue d queue
-
33:20 - 33:23that operates using this FIFO, first in, first
-
33:23 - 33:25out control,
-
33:25 - 33:29so they don't have to look any closer at my usage of it to know what I'm up to.
-
33:29 - 33:32The other thing that both stack and queue have which
-
33:32 - 33:34won't be apparent now, but will
-
33:34 - 33:36when we get a little further in the course,
-
33:36 - 33:37is that by
-
33:37 - 33:40defining the queue extraction to have kind of less features,
-
33:40 - 33:43to be what seems to be less powerful
-
33:43 - 33:47and have sort of a smaller set of things it has to support,
-
33:47 - 33:50also has some certain advantages from the implementation side. That
-
33:50 - 33:53if I know somebody's always going to be sticking things on this end and that end, but
-
33:53 - 33:55not mucking around in the middle,
-
33:55 - 33:58then I can make certain implementation decisions that support the necessary
-
33:58 - 34:00operations very efficiently,
-
34:00 - 34:03but don't actually do these things well because they don't need to,
-
34:03 - 34:06in a way that vector can't make those trade offs. Vector doesn't know for sure
-
34:06 - 34:09whether people will be mucking around with the middle or the ends or
-
34:09 - 34:10the front or the back,
-
34:10 - 34:13and so it has to kinda support everything equally well, that stack and
-
34:13 - 34:17queue has a really specific usage pattern that then we can
-
34:17 - 34:20use to guide our implementation decisions to make sure it runs
-
34:20 - 34:23efficiently for that usage pattern.
-
34:23 - 34:27So the same constructor or destructor in size is empty, that kind of
-
34:27 - 34:28all our linear collections to,
-
34:28 - 34:32and then it's operations which look just like push and pop but with a slight
-
34:32 - 34:36change in verb here, n queue and d queue,
-
34:36 - 34:39that add to the back, remove from the front,
-
34:39 - 34:40and then peak
-
34:40 - 34:43is the corresponding look at what's in the front. Like what would be d queued,
-
34:43 - 34:51but without removing it from the queue, so just see who's at the head of the line.
-
34:51 - 34:54And so a little piece of code I stole from the handout
-
34:54 - 34:56which
-
34:56 - 34:59sort of modeled a very, very simple sort of like if you're getting access to
-
34:59 - 35:00the layer and you're getting help,
-
35:00 - 35:01
-
35:01 - 35:05that you might ask the user, to kinda say well what do you want to do next, do you
-
35:05 - 35:09want to add somebody to the line or do you wanna service the next customer, and so we
-
35:09 - 35:11have this way of getting their answer.
-
35:11 - 35:15And if they said, okay, it's time to service the next customer then we d queue and answer
-
35:15 - 35:17the question of the first person in the queue which will be the one who's been there
-
35:17 - 35:20the longest, waiting the longest. And
-
35:20 - 35:23if their answer was not next, we'll assume it was a name of somebody
-
35:23 - 35:26just stick onto the queue, so that actually adds things to the queue.
-
35:26 - 35:29So as we would go around in this loop it would continue kind of stacking things up on
-
35:29 - 35:31the queue
-
35:31 - 35:33until
-
35:33 - 35:36the response was next and then it would start pulling them off and then we could go back
-
35:36 - 35:40to adding more and whatnot, and at any given point the queue will have the name of
-
35:40 - 35:41all the
-
35:41 - 35:43in-queued
-
35:43 - 35:44waiting questions
-
35:44 - 35:46that haven't yet been handled,
-
35:46 - 35:49and they will be pulled off oldest first,
-
35:49 - 35:51which is the fair way to have
-
35:51 - 35:55access in a waiting line.
-
35:55 - 35:57So
-
35:57 - 35:59just the -
-
35:59 - 36:04very similar to the stack, but they - LIFO versus FIFO
-
36:04 - 36:07managing to
-
36:07 - 36:14come in and come out in slightly different ways. So once you
-
36:14 - 36:16have kind of these four guys, right,
-
36:16 - 36:18you have what are called the
-
36:18 - 36:20sequential containers kind of at your disposal.
-
36:20 - 36:26Most things actually just need one of those things. You need a stack of
-
36:26 - 36:30keystrokes, right, or actions or web pages you visited; you need a queue of
-
36:30 - 36:34jobs being queued up for the printer. You need a vector of students who are in a class,
-
36:34 - 36:38you need a vector of scores on a particular exam,
-
36:38 - 36:41but there's nothing to stop you from kind of combining them in new ways to
-
36:41 - 36:44build even fancier things out of those building blocks,
-
36:44 - 36:47that each of them is useful in it's own right, and you can actually kind of mash them
-
36:47 - 36:48together to
-
36:48 - 36:50create even fancier things.
-
36:50 - 36:55So like I can have a vector of queue of strings that modeled the checkout lines
-
36:55 - 36:59in a supermarket, where each checkout stand has it's own queue of waiting people,
-
36:59 - 37:01but that there's a whole vector of them from
-
37:01 - 37:05the five or ten checkout stands that I have, and so I can find out which
-
37:05 - 37:06one is the
-
37:06 - 37:07shortest line
-
37:07 - 37:09by iterating over that vector
-
37:09 - 37:14and then asking each queue what's your size the find out which is the shortest line
-
37:14 - 37:18there, and picking that for the place to line up with my cart.
-
37:18 - 37:19
-
37:19 - 37:22If I were building a game, lets say, where there was a game board that was
-
37:22 - 37:23some grid,
-
37:23 - 37:27and that part of the features of this game which you could stack things
-
37:27 - 37:29on top of each location,
-
37:29 - 37:33then one way to model that would be a grid where each of the elements was a
-
37:33 - 37:36stack itself of strings. So maybe I'm putting letters down
-
37:36 - 37:39on a particular square of the board, and I can later cover that letter with
-
37:39 - 37:41another letter and so on,
-
37:41 - 37:44and so if I want to know what is the particular letter showing at any
-
37:44 - 37:45particular grid location,
-
37:45 - 37:49I can dig out the row column location, pull that stack out and then peek at what's on
-
37:49 - 37:51the top. I won't be
-
37:51 - 37:53able to see things that are underneath, and that might be exactly need in this
-
37:53 - 37:56game, is that you can only see the things in top,
-
37:56 - 38:00the things underneath are irrelevant, until maybe you pop them and they are exposed.
-
38:00 - 38:03So we just layer them on top of each other, we can make them as deep as we
-
38:03 - 38:07need to. It's not often they need to go past probably two levels, but you can build
-
38:07 - 38:10vectors of vectors of vectors and vectors of queues of stacks of grids and
-
38:10 - 38:13whatever you need to kind of get the job done.
-
38:13 - 38:16There's one little C++ quirk
-
38:16 - 38:18that I'm gonna mention while I'm there,
-
38:18 - 38:22which is that the vector of queue of string actually has a closer -
-
38:22 - 38:26a pair of those closing angle brackets that are neighbors there,
-
38:26 - 38:29where I said I have a queue of string, and that I'm enclosing that to be the element
-
38:29 - 38:30stored in a vector,
-
38:30 - 38:34that if I put these two right next to each other,
-
38:34 - 38:37which would be a natural thing to do when I was typing it out,
-
38:37 - 38:41that causes the compiler to misunderstand what we want.
-
38:41 - 38:43It will lead the
-
38:43 - 38:44grid stack
-
38:44 - 38:45string,
-
38:45 - 38:49and then when it sees the string, the next thing coming up will be these two greater
-
38:49 - 38:52than signs. It will read them together,
-
38:52 - 38:57so it effect tokenizing it as oh, these next two things go together,
-
38:57 - 38:59and they are the stream extraction operator,
-
38:59 - 39:01and then it just all
-
39:01 - 39:04haywire - goes haywire from there. I think that you're about - you were in the
-
39:04 - 39:09middle of declaring a type and then all of a sudden you asked me to do a stream extraction. What happens, right?
-
39:09 - 39:11Sad, but true,
-
39:11 - 39:14and it will produce an error message, which depending on your compiler is more or
-
39:14 - 39:18less helpful. The one is X-code is pretty nice, it actually says,
-
39:18 - 39:22closing template, there needs to be a space between it.
-
39:22 - 39:25The one in visual studio is not quite as helpful, but it's
-
39:25 - 39:27just something you need to learn to look for, is that you do actually have
-
39:27 - 39:28to
-
39:28 - 39:33plant that extra space in there so that it will read the closer for one, and then
-
39:33 - 39:35the second closer without
-
39:35 - 39:37mingling them together.
-
39:37 - 39:40There is an on deck proposal which shows you that C++ is a live
-
39:40 - 39:41language, it's
-
39:41 - 39:43evolving as we speak, but in the
-
39:43 - 39:47revision of C++ as being planned, they actually want to fix this
-
39:47 - 39:49so that actually it will be fine to use them
-
39:49 - 39:52without the space and the right thing will happen,
-
39:52 - 39:55and by changing it in the standard, it means the compiler writers will eventually kind of
-
39:55 - 40:00join to be spec compliant, will actually have to change their compilers
-
40:00 - 40:02to handle it properly, where as they now have
-
40:02 - 40:04little incentive to do so. And
-
40:04 - 40:08then I just put a little note here that as you get to these more complicated things there
-
40:08 - 40:09
-
40:09 - 40:13might be some more appeal to using typedef, which is a C++ way of
-
40:13 - 40:16[inaudible] shorthand.
-
40:16 - 40:19You can actually do this for any type in C++. The typing,
-
40:19 - 40:22if you were typically something it would go up at the top of the program.
-
40:22 - 40:25I say typedef and then I give the long name
-
40:25 - 40:28and then I give the new short name, the nickname I'd like to give to it. So I can
-
40:28 - 40:32say typedef into banana and then all through my program use banana as though
-
40:32 - 40:33it were an int.
-
40:33 - 40:37Okay, probably not that motivating in that situation, but when you have a
-
40:37 - 40:40type name that's somehow long and complicated and a little bit awkward to reproduce throughout
-
40:40 - 40:42your program, you can
-
40:42 - 40:45put that type name in place and use the shorthand name to kind of add clarity
-
40:45 - 40:48later. So maybe I'm using this to be
-
40:48 - 40:49
-
40:49 - 40:51some information about my calendar,
-
40:51 - 40:53where I have the
-
40:53 - 40:57months divided into days or days divided into hours, so having kinda of a two
-
40:57 - 40:59layer vector here,
-
40:59 - 41:03that rather than having vector of vector of ints all over the place I can us calendar T
-
41:03 - 41:05to be a synonym for that
-
41:05 - 41:09once I've made that declaration.
-
41:09 - 41:13Let me show you just a couple of things back in the compiler space before
-
41:13 - 41:19I let you guys run away to go skiing. One of the
-
41:19 - 41:23things that you're likely to be working on in this case is that you're
-
41:23 - 41:24learning a new
-
41:24 - 41:28API, API is called Application Programming Interface,
-
41:28 - 41:31it's the way you interact with the libraries, knowing what routine does what and what
-
41:31 - 41:33it's name is and what it's arguments are,
-
41:33 - 41:36and that's likely to be one of the things that's a little bit more of a
-
41:36 - 41:40sticking point early on here, is just kind of saying, oh I know this exists in a
-
41:40 - 41:43random library, but what's the name of the function, is it random numbers, is it random
-
41:43 - 41:45integers, is it random it? And
-
41:45 - 41:46
-
41:46 - 41:49being familiar with the ways you kind find out this information. So let me
-
41:49 - 41:53just give you a little hint about this; one is that you can open the header
-
41:53 - 41:56files, so I just opened in this case, the grid.h header file,
-
41:56 - 42:00and I can look at it and see what it says. It says, oh, here's some information, it actually has
-
42:00 - 42:01some sample code here,
-
42:01 - 42:05and as I scroll down
-
42:05 - 42:09it'll tell me about what the class is, and then it has comma's on each of the
-
42:09 - 42:11constructor and
-
42:11 - 42:12
-
42:12 - 42:15member function calls that tells me how it works and what errors it raises and
-
42:15 - 42:19what I need to know to be able to use this call correctly. And so
-
42:19 - 42:23for any of our libraries, opening the header file is likely to be an
-
42:23 - 42:26illuminating experience.
-
42:26 - 42:29We try to write them for humans to read, so they actually do have
-
42:29 - 42:31
-
42:31 - 42:33some
-
42:33 - 42:37helpfulness. If you go to open a standard header file,
-
42:37 - 42:42they're not quite as useful. For example, let's go look at I stream
-
42:42 - 42:44and keep going.
-
42:44 - 42:45You'll get
-
42:45 - 42:49in there and you'll see, okay, it's typedef template car basic I stream and then there's some goo and
-
42:49 - 42:51then there's a bunch of typedef's
-
42:51 - 42:55and then it gets down to here, there's a little bit of information that tells
-
42:55 - 42:56you about
-
42:56 - 42:58what the constructor might do and stuff.
-
42:58 - 43:03You can read this, but it's not - it doesn't tend to be actually
-
43:03 - 43:05targeted at getting the novice up to speed about what's going on. There is
-
43:05 - 43:07some information here, but
-
43:07 - 43:10in those cases you may be better of using one of our references, going back
-
43:10 - 43:11to the reader,
-
43:11 - 43:13or looking at
-
43:13 - 43:16one of the websites that we give a point or two on the reference handout that
-
43:16 - 43:16just kind of
-
43:16 - 43:18tries to extract the
-
43:18 - 43:20
-
43:20 - 43:22information you need to know as a client rather than trying to go look in here, because once you
-
43:22 - 43:25get in here, oh what is gettake, and it's like what is all this stuff with these underbars
-
43:25 - 43:28and stuff, it's not the best place to learn the interface, I think, from their
-
43:28 - 43:30header files.
-
43:30 - 43:31The other place that
-
43:31 - 43:34I will note that we have is up here on the website
-
43:34 - 43:38there is a documentation link, let me show you where I got to that just to remind you,
-
43:38 - 43:42is up here in the top,
-
43:42 - 43:43over on this side,
-
43:43 - 43:47and what this is, is actually this is our header files having been run through
-
43:47 - 43:49something that generates a webpage from them, so it has the same information
-
43:49 - 43:52available in the header files, but it's just organized in a
-
43:52 - 43:55clickable browsable way to get to things.
-
43:55 - 43:56And so if you
-
43:56 - 44:00dink this down and you look at the class list, you can say, yeah, tell me about queue, I'd like
-
44:00 - 44:04to know more about it and then it'll give you the public member function. This
-
44:04 - 44:06projector's really very
-
44:06 - 44:09fuzzy, I wonder if someone can sharpen that,
-
44:09 - 44:10
-
44:10 - 44:13that tells you that here's the constructor, here's the n queue d queue peak,
-
44:13 - 44:16there's a clear operator that empties the whole thing and then there's some other
-
44:16 - 44:20operations that are involved with the deep copying that are actually explicitly named out.
-
44:20 - 44:23And then if you go down, you can say, well tell me more about n queue,
-
44:23 - 44:27you can come down here, it'll tell you the documentation we had that's
-
44:27 - 44:30been extracted from the header files tells you about what the arguments are, what their
-
44:30 - 44:31turn value is,
-
44:31 - 44:32
-
44:32 - 44:34what things you need to know to use that properly.
-
44:34 - 44:37And so you'll probably find yourself using one or both of these, like going and actually
-
44:37 - 44:41reading the header files or reading the kind of cleaned up pretty printed header files
-
44:41 - 44:43just to get familiar with what those interfaces are, what the names are, and
-
44:43 - 44:45how you call them
-
44:45 - 44:46so
-
44:46 - 44:48that when you're working you know, and have a web browser kind of up
-
44:48 - 44:52aside to help you navigate that stuff
-
44:52 - 44:54without too much guess work.
-
44:54 - 44:56And so I just wanted to
-
44:56 - 44:58show you that before I let you go.
-
44:58 - 45:00Anybody questions about that? Hopefully you should feel a
-
45:00 - 45:01little bit like, hey,
-
45:01 - 45:05that starts to be useful. By Wednesday I'll show you map and set and
-
45:05 - 45:08then you'll realize there's a lot of really cool things you can do with all these
-
45:08 - 45:09objects around in your arsenal.
-
45:09 - 45:11So have a good weekend,
-
45:11 - 45:12enjoy the holiday,
-
45:12 - 45:13come to Truman,
-
45:13 - 45:17I'll see you on Wednesday.
- Title:
- Lecture 5 | Programming Abstractions (Stanford)
- Description:
-
Lecture 5 by Julie Zelenski for the Programming Abstractions Course (CS106B) in the Stanford Computer Science Department. In the fifth lecture,
Julie discusses the use of templates, vectors and template specialization. She then goes through an example of code line by line explaining each part in detail. Finally, she goes on to explain what grid interfaces are and briefly goes over how you can use them in programming different games.
Complete Playlist for the Course:
http://www.youtube.com/view_play_list?p=FE6E58F856038C69CS 106B Course Website:
http://cs106b.stanford.eduStanford Center for Professional Development:
http://scpd.stanford.edu/Stanford University:
http://www.stanford.edu/Stanford University Channel on YouTube:
http://www.youtube.com/stanforduniversity/ - Video Language:
- English
- Duration:
- 45:30
![]() |
N. Ueda edited English subtitles for Lecture 5 | Programming Abstractions (Stanford) | |
![]() |
Eunjeong_Kim added a translation |