1
00:00:00,060 --> 00:00:05,690
Once again, picking up where we left off, let's go ahead and start these quotations.

2
00:00:05,880 --> 00:00:08,430
I just want to break them in a different videos because it seemed like.

3
00:00:09,570 --> 00:00:15,030
A lot of stuff to take in and just one video and the videos can get kind of long, so you know, this

4
00:00:15,030 --> 00:00:16,620
video can take a while for sure.

5
00:00:17,700 --> 00:00:22,080
So I'm going to start out with the simpler rotations, so.

6
00:00:23,910 --> 00:00:25,770
We'll start out with like left left and left right.

7
00:00:27,000 --> 00:00:29,700
So let's go ahead and start out with this left left.

8
00:00:29,700 --> 00:00:39,360
So do you know, pointer a real tree left left rotation?

9
00:00:41,340 --> 00:00:43,290
And so what am I going to do?

10
00:00:43,410 --> 00:00:48,810
Right off the bat is declared some pointers to our.

11
00:00:52,870 --> 00:01:00,520
Routes left, and I'm also going to do the routes left right, and so we'll look at the picture in just

12
00:01:01,360 --> 00:01:02,110
one second.

13
00:01:02,140 --> 00:01:11,710
So the path note calling and route that is going to be left, this RL is going to be the route left

14
00:01:11,710 --> 00:01:12,340
some tree.

15
00:01:13,750 --> 00:01:22,270
And then I'm going to do node pointer rlr equals or else right century.

16
00:01:22,780 --> 00:01:25,420
And so let's look at why we're going to do that.

17
00:01:25,420 --> 00:01:27,610
So let's look at that left last rotation.

18
00:01:29,590 --> 00:01:34,690
So I've labeled them right here, so we have the route which is getting passed to our function that's

19
00:01:34,690 --> 00:01:35,140
enroute.

20
00:01:35,800 --> 00:01:43,630
Then we have it's right, we have routes left and then we have routes left right, which is why I call

21
00:01:43,630 --> 00:01:44,770
it our alarm.

22
00:01:46,000 --> 00:01:55,000
And we're doing we're labeling these because we notice in these pictures that we are going to have to

23
00:01:56,530 --> 00:02:01,840
break this sub off and attach it to route when it gets moved here.

24
00:02:02,680 --> 00:02:12,970
So this is just basically each time we're going to have a few nodes, like three or maybe four nodes,

25
00:02:13,420 --> 00:02:18,100
depending on the type of rotation that we're doing that we have to keep track of when we're changing

26
00:02:18,100 --> 00:02:19,480
pointers and stuff like that.

27
00:02:21,650 --> 00:02:25,080
So let's kind of absorb the steps in this process.

28
00:02:25,100 --> 00:02:30,890
You might already be familiar with these from our first lecture, but let's just make sure that we understand

29
00:02:30,890 --> 00:02:32,000
what we need to do here.

30
00:02:33,110 --> 00:02:36,700
So this is a left left rotation.

31
00:02:36,710 --> 00:02:39,470
We are marking the route and routes left.

32
00:02:41,420 --> 00:02:50,900
And the first part of the rotation, we're seeing that what we do is we're basically just bringing this

33
00:02:51,560 --> 00:02:54,680
route down right here.

34
00:02:55,250 --> 00:03:03,170
So if you have the left left and we were just thinking about the simple example that we're going over

35
00:03:03,350 --> 00:03:04,730
these three nodes here.

36
00:03:05,930 --> 00:03:10,950
I kind of what we were wrote like involving in our really simple explanation of the rotations, and

37
00:03:10,950 --> 00:03:12,570
we just brought this thing down.

38
00:03:13,170 --> 00:03:21,810
So this route known as going here where this rlr blue note is and since is going right there, we need

39
00:03:21,810 --> 00:03:24,960
to kind of like, you know, we're moving this thing out of the way.

40
00:03:26,190 --> 00:03:34,890
And since route comes down here and it had this left sub three pointer on it, you noticed that this

41
00:03:34,890 --> 00:03:37,620
left some three pointer is just kind of dangling now.

42
00:03:37,980 --> 00:03:45,480
And, you know, since it was a left sub three pointer and since this blue node technically part of

43
00:03:45,480 --> 00:03:50,460
its left sub tree, she knows you had to go left to access this.

44
00:03:50,790 --> 00:03:58,080
That's why we're going to go ahead and attach this as the left some tree of route after we performed

45
00:03:58,080 --> 00:03:59,490
this rotation here.

46
00:04:01,260 --> 00:04:03,360
So let's go ahead and do that.

47
00:04:05,470 --> 00:04:09,040
So what I'm going to do is.

48
00:04:11,210 --> 00:04:22,100
Say the RL, I'm going to say, ah, ls, right, some tree, some and do that little attachment first,

49
00:04:22,100 --> 00:04:22,670
actually.

50
00:04:24,020 --> 00:04:25,520
So we're talking about RL here.

51
00:04:27,870 --> 00:04:34,230
So RL, it's raised some trees, and now we're now we're talking about the blue note.

52
00:04:34,440 --> 00:04:38,100
So that's what our ALS rate cemetery is.

53
00:04:39,510 --> 00:04:42,840
And what I'm going to do is set that to.

54
00:04:46,190 --> 00:04:47,690
The enroute.

55
00:04:50,940 --> 00:04:53,430
So RL, right, century.

56
00:04:54,480 --> 00:04:55,530
Gets set.

57
00:04:56,830 --> 00:04:59,620
To intrude so.

58
00:05:01,220 --> 00:05:03,620
That is doing this part right here.

59
00:05:05,970 --> 00:05:09,510
So I'm referencing that first, actually.

60
00:05:09,880 --> 00:05:19,470
Well, then we'll do this part next, so first part bringing this down and we're setting it to this

61
00:05:19,470 --> 00:05:27,930
is basically so are orals rites of tree, which is like this pointer here is getting set to intrude.

62
00:05:28,110 --> 00:05:29,370
So you can see that right here.

63
00:05:29,380 --> 00:05:31,450
Earl is now to enroute.

64
00:05:31,770 --> 00:05:33,540
And now let's do this part right here.

65
00:05:35,850 --> 00:05:40,840
So then we're going to say in enroute, it's left surgery.

66
00:05:40,890 --> 00:05:43,350
It's going to be set to rlr.

67
00:05:44,640 --> 00:05:45,810
So let's go back and look at that.

68
00:05:47,460 --> 00:05:55,440
So in roots left, some tree is being said to rlr because rlr was part of its left some tree in the

69
00:05:55,440 --> 00:05:56,920
beginning before the rotation there.

70
00:05:56,940 --> 00:05:57,990
So here we go.

71
00:05:58,140 --> 00:05:59,490
This is route left.

72
00:05:59,490 --> 00:06:02,450
Some tree is now rlr for our famous picture there.

73
00:06:06,230 --> 00:06:12,290
OK, so we're going to do a another thing here.

74
00:06:12,470 --> 00:06:23,180
So if the path node was the route, then we of course, need to update route to the new route.

75
00:06:23,420 --> 00:06:32,000
So I'm going to say that path node was the route then of that route.

76
00:06:32,000 --> 00:06:36,620
Like we're talking about our actual route of the tree needs to be updated.

77
00:06:37,040 --> 00:06:37,520
So.

78
00:06:40,460 --> 00:06:41,510
We knew it.

79
00:06:41,810 --> 00:06:47,570
So we're going to have to say if route equals enroute.

80
00:06:48,620 --> 00:06:54,920
So this is the case in which we were rotating about the true root of the tree, the top of the tree

81
00:06:55,250 --> 00:07:02,690
that node, then we're going to have to say that our new route is going to be our L right?

82
00:07:04,080 --> 00:07:04,980
So let's go back here.

83
00:07:05,580 --> 00:07:11,250
New route is RL, so let's imagine that we're not talking about this being a whole sub tree.

84
00:07:12,660 --> 00:07:20,340
You know, the in the in the case in which this is not just a sub tree like the case in which this is

85
00:07:20,340 --> 00:07:25,140
the root of the actual tree like the fully revealed tree starts here.

86
00:07:25,350 --> 00:07:31,410
In that case, once we perform this rotation, the new root of the whole tree will be this RL.

87
00:07:32,820 --> 00:07:33,780
So I'm not saying that.

88
00:07:34,980 --> 00:07:42,210
It's always the case, I'm just saying that, you know, sometimes we're talking about rotating a sub

89
00:07:42,210 --> 00:07:48,090
tree of the whole tree where this is some node in the sub tree, where the balance factor is off and

90
00:07:48,090 --> 00:07:54,370
sometimes the actual actual root of the tree balance factor is off.

91
00:07:54,390 --> 00:08:01,500
And so in that case, we need to change what we consider the true root of the tree, which is our private

92
00:08:01,500 --> 00:08:02,610
member called Root.

93
00:08:03,210 --> 00:08:04,470
So that is what I'm talking about.

94
00:08:06,180 --> 00:08:06,510
All right.

95
00:08:06,520 --> 00:08:13,860
So we set that and then we're going to return the root of the sub tree or the actual root, you know,

96
00:08:13,860 --> 00:08:19,080
which I'm just going to say, return RL in either case, because that's what it is.

97
00:08:21,500 --> 00:08:27,170
And then we go we have our rotation figured out, so let's go ahead and move on to the next one.

98
00:08:27,830 --> 00:08:34,550
So I'm going to say no evil three are our rotation.

99
00:08:36,310 --> 00:08:39,850
And then let's go ahead and declare these nodes just like before.

100
00:08:40,060 --> 00:08:44,500
I'm going to say, ah, for roots, right?

101
00:08:44,500 --> 00:08:56,660
So enroute right century and then I'm going to say R L and that's going to be R hours left, Sophia.

102
00:08:59,290 --> 00:09:02,350
So let's take a look at that because we're doing our rotation.

103
00:09:05,930 --> 00:09:14,060
So you notice we have this route, which is are for the route here, we have the right summary of the

104
00:09:14,060 --> 00:09:14,360
route.

105
00:09:14,370 --> 00:09:20,000
So ah, and then we have the right, some trees left.

106
00:09:20,780 --> 00:09:26,210
So these are what we're considering because similarly, you know, similar to this one is basically

107
00:09:26,210 --> 00:09:34,760
a mirror image we had rlr and now time we have ah, and this time we have our L because we're going

108
00:09:34,760 --> 00:09:40,880
to need to take this and attach it to the end route.

109
00:09:41,150 --> 00:09:46,070
Once we do our first rotation, so it's basically the opposite of what we just did.

110
00:09:47,360 --> 00:09:49,280
So let's make that happen right now.

111
00:09:49,280 --> 00:09:56,420
So we're going to go our hours left some tree, it's going to be enroute.

112
00:09:58,220 --> 00:09:59,450
So that's that first part.

113
00:10:01,100 --> 00:10:04,250
We're taking any route and we're moving it down.

114
00:10:04,580 --> 00:10:08,570
And so now we have hours left, sub tree is enroute.

115
00:10:10,140 --> 00:10:12,110
Hours left cemetery is in ruins.

116
00:10:13,550 --> 00:10:18,520
Then we say in roots, right, it's right cemetery.

117
00:10:18,530 --> 00:10:20,110
It's going to be our No.

118
00:10:22,690 --> 00:10:23,200
So.

119
00:10:24,720 --> 00:10:31,410
In Roots, Right Cemetery, so it's just left hanging there, and this was part of its cemetery originally,

120
00:10:31,420 --> 00:10:38,280
so we're saying it's right cemetery is the cemetery, our area which got detached from here.

121
00:10:39,540 --> 00:10:42,050
And that's the final picture we're ending up with there.

122
00:10:44,620 --> 00:10:44,980
OK.

123
00:10:45,010 --> 00:10:50,550
Same thing, we're going to need to do this kind of check here.

124
00:10:53,760 --> 00:11:00,510
So I'm going to copy that and paste, and then we'll just do a small change to make it PR because that

125
00:11:00,510 --> 00:11:02,820
is the new route.

126
00:11:03,450 --> 00:11:07,470
So if you want to see that again, our our is our new route, so that's why we're doing that.

127
00:11:10,650 --> 00:11:11,040
OK.

128
00:11:12,700 --> 00:11:16,750
So let's go ahead and move on to the next one.

129
00:11:16,930 --> 00:11:24,250
So our next one is going to be an R L rotation, right left rotation.

130
00:11:24,250 --> 00:11:31,870
So I'm going to, you know, pointer Avielle three hour L rotation.

131
00:11:34,530 --> 00:11:45,330
And so for this one, I'm going to say no pointer are equals in roots, right century, and I'm going

132
00:11:45,330 --> 00:11:52,830
to say no to R L equals r left surgery.

133
00:11:57,920 --> 00:11:58,550
That's true.

134
00:12:00,710 --> 00:12:02,750
OK, so let's take a look at this situation.

135
00:12:03,140 --> 00:12:07,100
We know this one's going to be a little bit more complicated and we're going to have to.

136
00:12:08,890 --> 00:12:14,080
Make a little more changes than we did previously with the pointers, so let's go ahead and check it

137
00:12:14,080 --> 00:12:15,790
out for this rotation.

138
00:12:18,380 --> 00:12:18,890
So.

139
00:12:19,890 --> 00:12:29,910
We're still going to be referring to three nodes, so we actually don't need to refer to any more nodes

140
00:12:30,780 --> 00:12:31,950
than previously.

141
00:12:33,090 --> 00:12:36,180
But we're going to have to.

142
00:12:36,390 --> 00:12:42,090
I'm just not making like temporary pointers to these ones that we're going to become detached and need

143
00:12:42,090 --> 00:12:48,810
to be changed and moved because I can just, you know, reference this guy's left and right.

144
00:12:48,930 --> 00:12:51,540
So that's why I'm still just making.

145
00:12:54,980 --> 00:12:56,360
Still just making our.

146
00:12:58,300 --> 00:12:59,230
Two, I'm sorry.

147
00:12:59,260 --> 00:13:00,310
It's actually just.

148
00:13:02,480 --> 00:13:03,380
Two extra.

149
00:13:04,430 --> 00:13:13,070
So previously, I made two pointers for besides enroute, and this time I'm doing the same, I'm making

150
00:13:13,070 --> 00:13:17,990
two extra temporary pointers to be able to reference stuff.

151
00:13:18,830 --> 00:13:20,360
So yeah, let's get to it.

152
00:13:20,780 --> 00:13:25,400
We have here, we have this RR, which I already declared and it's our L.

153
00:13:26,450 --> 00:13:28,700
So right here, our and our URL.

154
00:13:30,560 --> 00:13:31,850
So that is all set up.

155
00:13:32,690 --> 00:13:36,470
So what are we going to need to do first for this?

156
00:13:37,160 --> 00:13:46,910
Well, we're going to have to set what I'm going to do is actually set our hours left sub tree.

157
00:13:50,430 --> 00:13:59,370
To the drills, right, so tree, so I'm actually before I do this movement here.

158
00:14:00,640 --> 00:14:06,880
I know it's ideal to do the weave into kind of thinking about doing the rotation this way first, so

159
00:14:06,880 --> 00:14:09,490
we would like take our and move it down.

160
00:14:10,910 --> 00:14:11,450
To.

161
00:14:15,240 --> 00:14:19,400
B r ls sub Sudbury, so it's like this RL.

162
00:14:19,800 --> 00:14:24,330
It goes here between these two and then we move R down.

163
00:14:24,330 --> 00:14:29,880
So it's basically the way that we've been thinking about it with the two shifts is that RL would move

164
00:14:29,880 --> 00:14:35,970
here and it would be between these two and then we would have our move down.

165
00:14:35,970 --> 00:14:38,490
So RL would become the route into left.

166
00:14:38,490 --> 00:14:40,020
Sub three would be, Ah.

167
00:14:40,200 --> 00:14:44,760
So you know, that's why I have the R here with just the outline, because it came down, it was the

168
00:14:44,760 --> 00:14:51,180
route, but we moved RL here and then we rotated it all reality and we rotated it down.

169
00:14:51,180 --> 00:14:52,590
And so our I was at the top.

170
00:14:52,590 --> 00:14:53,280
It was the roots.

171
00:14:54,360 --> 00:14:56,040
But I'm going to do this part first.

172
00:14:56,190 --> 00:15:01,260
So what I'm going to say is that I'm going to actually change this one.

173
00:15:02,990 --> 00:15:05,450
I'm going to do this one for us, so we're going to be handling this right now.

174
00:15:05,960 --> 00:15:12,560
I'm going to say hours left sub three is going to be our else.

175
00:15:12,770 --> 00:15:15,170
Raise some trees to head the dark blue here.

176
00:15:16,040 --> 00:15:21,260
So this dark blue is actually going to become R's left some tree.

177
00:15:21,800 --> 00:15:23,500
So let's go ahead and do that.

178
00:15:25,730 --> 00:15:28,040
So I'm going to say are

179
00:15:30,410 --> 00:15:31,790
less tree?

180
00:15:31,910 --> 00:15:35,390
Get set to our LS rate.

181
00:15:35,390 --> 00:15:39,560
So tree, so and do that one first.

182
00:15:42,360 --> 00:15:48,930
And then the next thing that I am going to do is set this one right here.

183
00:15:49,050 --> 00:15:55,770
So I said, I want to do both these things before I actually do this rotation and change this pointer.

184
00:15:57,600 --> 00:15:58,820
So I'm going to.

185
00:15:58,860 --> 00:16:01,770
This is enroute America as it was right here.

186
00:16:02,340 --> 00:16:04,560
It's our actual one that we're rotating about.

187
00:16:04,560 --> 00:16:11,500
And so I'm going to set in roots right sub tree to our earl's left some tree.

188
00:16:11,550 --> 00:16:17,010
This is the turquoise one right here, so that is going to have to be attached to here.

189
00:16:18,420 --> 00:16:22,440
So that's what we do in roots, right century, Israel's left century.

190
00:16:23,310 --> 00:16:31,320
So let's do that in root, right century is our else this century.

191
00:16:33,000 --> 00:16:35,220
So got that out of the way.

192
00:16:35,430 --> 00:16:35,790
All right.

193
00:16:35,790 --> 00:16:38,910
So let's think about what we need to do next.

194
00:16:39,330 --> 00:16:41,360
Let's look at RL.

195
00:16:41,910 --> 00:16:44,940
So RL is our new route.

196
00:16:45,270 --> 00:16:47,490
And so we basically need to.

197
00:16:49,150 --> 00:16:53,830
Change what it's pointing to now because we moved it up.

198
00:16:54,730 --> 00:16:58,690
And we moved this one down, and now it has a different left and right cemetery.

199
00:17:00,410 --> 00:17:07,970
Than it did before, so previously it was these words right and left.

200
00:17:08,120 --> 00:17:11,330
So I left and right some trees and you know, those are now.

201
00:17:12,320 --> 00:17:18,200
Attached to these two guys, so we're going to have to update these right now, so this is a case in

202
00:17:18,200 --> 00:17:19,460
which this is moved down.

203
00:17:19,460 --> 00:17:25,670
And so now our else, I'm actually going to set this one first and say Earl's right.

204
00:17:27,160 --> 00:17:29,260
Zebari is going to be ah.

205
00:17:29,740 --> 00:17:35,130
And then we'll just also do our else left sub tree is going to be enroute.

206
00:17:35,950 --> 00:17:42,140
So let's go ahead and do both of those right now are else right?

207
00:17:42,280 --> 00:17:46,300
So tree is going to be our.

208
00:17:48,940 --> 00:17:51,470
And we're going to say our allies.

209
00:17:53,470 --> 00:17:55,930
Less than three, it's going to be equal to enrage.

210
00:18:01,670 --> 00:18:07,220
And that's basically all good to go because we've already solidified these subsidies.

211
00:18:08,410 --> 00:18:13,390
So that's kind of why it's a nice order to do this and because, you know, this is already attached

212
00:18:13,390 --> 00:18:15,910
to here and this is already attached to here.

213
00:18:16,270 --> 00:18:21,160
So now when we're setting these, we can rely on the fact that these subsidies are already complete.

214
00:18:21,190 --> 00:18:24,050
You know, this sub tree is attached to here in the subsidies attached to here.

215
00:18:24,080 --> 00:18:28,300
Now we can set the pointers for our new route here.

216
00:18:29,140 --> 00:18:32,140
So speaking of the new route, let's also go ahead and handle that.

217
00:18:34,350 --> 00:18:41,820
So I'm going to pass that right here, and, you know, our new rule is our L, so I'm going to set

218
00:18:41,820 --> 00:18:44,880
that if it's the case that it was the actual root of the whole tree.

219
00:18:45,090 --> 00:18:46,650
And then I'm going to return our URL.

220
00:18:48,480 --> 00:18:49,830
OK, so I went pretty smooth.

221
00:18:49,860 --> 00:18:52,170
Let's go ahead and do our final one.

222
00:18:52,200 --> 00:18:55,980
So this is going to be the l r so left right rotation.

223
00:18:56,760 --> 00:19:01,960
So do you l three l r allies.

224
00:19:02,190 --> 00:19:07,410
If that a real tree LR rotation.

225
00:19:09,480 --> 00:19:17,580
And so this one is going to be node r l in root left.

226
00:19:17,670 --> 00:19:27,270
So tree and node are our equals are L's right, so tree.

227
00:19:28,500 --> 00:19:29,550
Let's take a look at that.

228
00:19:30,180 --> 00:19:30,660
So.

229
00:19:35,290 --> 00:19:36,340
Left, right rotation.

230
00:19:36,550 --> 00:19:39,040
Our final one, so we have.

231
00:19:40,480 --> 00:19:51,280
The RL and rlr so are El and Al rlr as what we're considering this time and so very similar to the last

232
00:19:51,280 --> 00:19:51,640
one.

233
00:19:52,480 --> 00:19:54,880
You know, we're taking this, putting it right here.

234
00:19:56,470 --> 00:20:04,720
Bringing this in route, which is the route down, and then, you know, first I'm going to do these

235
00:20:04,720 --> 00:20:05,890
attachments, actually.

236
00:20:07,150 --> 00:20:10,660
Before I set the new Eilers left and right.

237
00:20:11,530 --> 00:20:12,310
So same thing.

238
00:20:13,120 --> 00:20:14,950
Let's go ahead and get to it.

239
00:20:14,950 --> 00:20:19,660
So let's set these two right here, so I'm going to do our else, right?

240
00:20:19,660 --> 00:20:25,330
So tree is equal to this blue and here are ours left.

241
00:20:25,810 --> 00:20:27,370
So let's go ahead and do that.

242
00:20:27,370 --> 00:20:27,930
R.l

243
00:20:30,730 --> 00:20:33,580
Island, you are al right.

244
00:20:33,580 --> 00:20:36,370
Sub tree is equal to our al are

245
00:20:39,010 --> 00:20:40,000
left some tree.

246
00:20:44,390 --> 00:20:44,750
Cool.

247
00:20:47,030 --> 00:20:50,960
And then, you know, the other one is going to be our enroute.

248
00:20:51,170 --> 00:20:55,910
So, you know, our interview got taken down here, so let's send it to this Terkel's turquoise guy,

249
00:20:55,940 --> 00:20:58,270
which is rlr right century.

250
00:20:58,430 --> 00:21:00,350
So let's go ahead and do that.

251
00:21:01,430 --> 00:21:03,200
I'm going to do in roots

252
00:21:05,840 --> 00:21:09,440
left some tree, the sequel to our

253
00:21:12,020 --> 00:21:13,190
right century.

254
00:21:15,550 --> 00:21:22,450
And then, of course, let's set our new routes left and right pointers, since these are all set up

255
00:21:22,450 --> 00:21:23,260
with the sentries.

256
00:21:23,980 --> 00:21:31,690
We're going to do said it to our Elsa rlr as leftist Earl and rlr Wright is enroute.

257
00:21:32,290 --> 00:21:33,990
So let's go ahead and do this.

258
00:21:35,890 --> 00:21:38,650
Right our left.

259
00:21:38,650 --> 00:21:48,420
So tree is going to be our ally and our our great century is going to be a bit.

260
00:21:51,100 --> 00:21:52,630
And then we got to do this, too.

261
00:21:53,350 --> 00:21:58,720
So what we're doing is we're actually setting to rlr because that is the new route.

262
00:21:58,810 --> 00:22:01,810
If we go back here rlr is our new route in the final.

263
00:22:02,140 --> 00:22:03,100
So it looks like this.

264
00:22:06,220 --> 00:22:11,290
OK, so now we got all of our rotations here.

265
00:22:13,330 --> 00:22:24,040
So actually, I know I've made a lot of videos for this, but I'm going to just have a short next video

266
00:22:24,910 --> 00:22:25,900
edit right here.

267
00:22:26,020 --> 00:22:31,750
And the next video is just going to be us printing out the tree.

268
00:22:32,140 --> 00:22:37,060
You know, we'll we'll fix up our main because right now I just have like this hello world in Maine,

269
00:22:38,020 --> 00:22:43,900
and we will go ahead and print out our tree and confirm that it works and everything like that.

270
00:22:43,930 --> 00:22:47,150
So with that, I will see you in the next.
