forked from coding-minutes/coding-minutes.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cpp-data-structures-algorithms.html
executable file
·512 lines (391 loc) · 18.7 KB
/
cpp-data-structures-algorithms.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!---Favicon-->
<link rel="icon" type="image/png" href="imgs/icon.png" />
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous" />
<!--Custom CSS-->
<link rel="stylesheet" href="style.css" />
<!---FontAwesome-->
<script src="https://use.fontawesome.com/2445c4adc5.js"></script>
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css?family=Nunito:200,300,400,700" rel="stylesheet" />
<title>DSA Essentials | Coding Minutes</title>
<meta property="og:url" content="https://www.codingminutes.com">
<meta property="og:type" content="website">
<meta property="og:title" content="Data Structures & Algorithms Essentials | Coding Minutes">
<meta property="og:description" content="Now pay less than a Pizza🍕, learn more than ever with Prateek Bhaiya & Udemy💡">
<meta property="og:image" content="https://codingminutes.com/imgs/DSAIcon.png">
</head>
<body>
<!-- Bootstrap JavaScript -->
<section id="cover-banner" class="w-100">
<!--Responsive Navbar-->
<nav class="navbar navbar-expand-md navbar-dark bg-transparent">
<div class="container">
<a class="navbar-brand" href="./index.html">
<img src="imgs/logo_white.png" height="40" />
</a>
<button class="navbar-toggler" data-toggle="collapse" data-target="#cmnavbar2">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="cmnavbar2">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<strong><a class="nav-link" href="http://ide.codingminutes.com" target="_blank">Online IDE</a></strong>
</li>
<li class="nav-item"><a class="nav-link" href="./index.html#course_gallery">Udemy Courses</a></li>
</li>
<li class="nav-item"><a class="nav-link" href="./index.html#scaler">LIVE Courses</a></li>
</li>
<li class="nav-item"><a class="nav-link" href="./index.html#placement-banner">Discord</a></li>
</li>
<li class="nav-item">
<a class="nav-link" href="./index.html#campuscaptain">Campus Captain</a>
</li>
<li class="nav-item"><a class="nav-link" href="./index.html#team">Team</a></li>
<a class="nav-link" href="#faq">FAQ</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#footer">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!--Cover Text and Graphic-->
<div class="container">
<div class="row align-items-center mt-5">
<div class="col lg-8 text-left">
<h2 class="display-4">Data Structures & Algorithms Essentials</h2>
<p class="lead d-md-block">
Essentials Course is now on #Udemy!
</p>
<div class="row">
<div class="col-8">
<div class="price">
<h3> ₹ 420 + Taxes <strike class="text-white-50">₹ 18,560/-</strike></h3>
<p> <span style="background:red; border-radius:2px" class="px-2 py-1">May Sale</span>
</p>
<button class="btn btn-white md-3 px-4 py-2 mb-3" onclick="location.href='https://www.udemy.com/course/cpp-data-structures-algorithms-prateek-narang/?couponCode=MAY420';">
<i class="fa fa-tv mr-1"></i> Enroll now on Udemy!
</button>
<div class="rating" style="color:gold">
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
</div>
<p>7000+ students have already joined !!</p>
</div>
<div class="text-left mt-3">
<p> <i class="fa fa-calendar-check-o" aria-hidden="true"></i> Grab it ASAP !! <i style="color:red" class="fa fa-heart" aria-hidden="true"></i>
</p>
</div>
</div>
<div style="height: 250px;"></div>
</div>
</div>
<iframe class="video-play" width="540" height="315" src="https://www.youtube.com/embed/bN4erfb3cKw"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
</div>
</section>
<section id="about">
<div class="container">
<div class="row py-5 flex-lg-row flex-column justify-content-between">
<div class="col-lg-6 col-12">
<div class="mt-5" style="text-align: justify;">
<br>
<h2>Course Highlights</h2>
<ul>
<li> 220+ HD Lectures </li>
<li> 24+ hours of interactive content </li>
<li> Hands-on Code Examples </li>
<li> 24+ Modules</li>
<li> Self Evaluation : Quizzes, Coding Exercises </li>
<li> <b>BONUS: </b>Project Work </li>
<li><b>NEW & EXCLUSIVE:</b> Dedicated TA Doubt Support </li>
</ul>
<h2>Overview of Topics</h2>
<h4>Data Structures</h4>
<ul>
<li>Arrays/Vectors</li>
<li>Stacks/Queues</li>
<li>Linked List</li>
<li>Trees/BST</li>
<li>Heaps/Priority Queue</li>
<li>Hashing/Trie</li>
</ul>
<h4>Algorithms</h4>
<ul>
<li>Searching</li>
<li>Sorting</li>
<li>Graph Algorithms Basics</li>
<li>Dynamic Programming Basics</li>
<li>Brute-Force</li>
<li>Backtracking</li>
</ul>
<!-- <ul>
<li> Arrays, Strings, Vectors, Binary Search </li>
<li> Stacks, Queues, Linked Lists </li>
<li> Binary Trees, BSTs, Heaps </li>
<li> Hashing, Pattern Matching, Tries </li>
<li> Brute force, Backtracking</li>
<li> Sliding Window, Two Pointer </li>
<li> Sorting & Searching, Greedy </li>
<li> Graphs Algorithms, Dynamic Programming </li>
</ul> -->
</div>
</div>
<div class="col-lg-5 col-12 mt-5">
<div class="card mt-2">
<div class="card-header text-center">Meet your Instructor</div>
<div class="">
<div class="px-3">
<img src="imgs/prateek_2.png" class="img-fluid">
</div>
<div class="card-body text-center">
<h5 class="display-5 text-center">Prateek Narang</h5>
<p class="lead text-muted">Software Engineer-III, Google</p>
<p class="text-muted d-block">Prateek is popular programming instructor and an ace software engineer, currently working with Google & Coding Minutes Instructor. He is known for his amazingly simplified explanations that makes everyone fall in love with programming. He has has over 5+ years of teaching experience and has trained over 50,000 students. His expertise lies in problem solving, algorithms, competitive programming and machine learning. His interactive mario style at <a href="http://prateeknarang.com">prateeknarang.com </a> resume is loved by all.</p>
<div class="d-flex justify-content-center">
<button class="btn mx-1" onclick="window.location='https://www.linkedin.com/in/prateek-narang-0108b39a/'"><i class="fa fa-linkedin-square" aria-hidden="true"></i>
</button>
<button class="btn mx-1" onclick="window.location='https://www.instagram.com/prateeknarang27/'"><i class="fa fa-instagram" aria-hidden="true"></i>
</button>
<button class="btn mx-1" onclick="window.location='https://www.youtube.com/channel/UCWrVQZ07TBumcwV0YbcH4Kg?view_as=subscriber'"><i class="fa fa-youtube" aria-hidden="true"></i>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-----------------End of section -------->
<!-- SPECIALITY -->
<section>
<div class="container p-5">
<div>
<h1>What makes Coding Minutes Special?</h1>
</div>
<div class="row">
<div class="col-md-4 text-center">
<div class="mt-2 p-2">
<img src="imgs/fe-1.svg" class="img-fluid" style="height: 190px;">
</div>
<h5>Accelerate Learning</h5>
<p class="text-muted d-none d-md-block">Our <strong>DSA Level Up course</strong> is designed to accelerate
your learning experience, so that you get the maximum.</p>
</div>
<div class="col-md-4 text-center">
<div class="mt-2 p-2">
<img src="imgs/fe-2.svg" class="img-fluid" style="height: 190px;">
</div>
<h5>Practice Excercises</h5>
<p class="text-muted d-none d-md-block">Practice makes a man Perfect, when you join our course, we make sure you
do enough practice questions to master the concepts well.</p>
</div>
<div class="col-md-4 text-center">
<div class="mt-2 p-2">
<img src="imgs/fe-3.svg" class="img-fluid" style="height: 190px;">
</div>
<h5>Ask Doubts</h5>
<p class="text-muted d-none d-md-block">You can clear all your doubts by asking questions to instructor, and get solid
understanding of underlying concepts!</p>
</div>
</div>
</div>
</div>
</section>
<!-- SECTION -->
<section>
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6">
<img src="imgs/bootcamp.jpeg" class="w-100" style="border: 10px solid white;">
</div>
<div class="col-lg-6 text-center">
<h2>Ready to take your Coding Skills <br> to Next Level?</h2>
<p class="lead">Join the Course Now!</p>
<button class="btn btn-gradient-primary" onclick="location.href='https://www.udemy.com/course/cpp-data-structures-algorithms-prateek-narang/?couponCode=NOV490';" ><i class="fa fa-tv mr-1"></i> Enroll on Udemy!</button>
</div>
</div>
</div>
</div>
</section>
<br>
<section class="scaler-section mt-5">
<div class="logo-backdrop logo-backdrop-small">
<img src="https://assets.scaler.com/assets/scaler/svg/logo-by-ib-056ab22f1a6547d6d9a6896f0048a4cb5d4c6cc7bfa6f2a0f27bb8e265c95bd3.svg.gz" class="scaler-section__logo">
</div>
<div class="p-5">
<div class="container position-relative">
<div class="logo-backdrop">
<img src="https://assets.scaler.com/assets/scaler/svg/logo-by-ib-056ab22f1a6547d6d9a6896f0048a4cb5d4c6cc7bfa6f2a0f27bb8e265c95bd3.svg.gz" class="scaler-section__logo">
</div>
<div class="row no-gutters align-items-center justify-content-between scaler-section__row">
<div class="scaler-section__text">
Checkout Scaler's amazing <br/>
<div class="scaler-section__text--highlight">
Data Structures & Algorithms Course
</div>
</div>
<a href="https://www.scaler.com/courses/data-structures-and-algorithms" target="_blank" class="btn btn-white" style="color:#003ab5;">
Explore
</a>
</div>
</div>
</div>
</section>
<!-- <section class="row justify-content-center">
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSd13lD8A7zl4zeuNbngYQ9Zgj9wUkgvBsnKH0znBqOtZGTfMg/viewform?embedded=true" width="640" height="950" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>
</section>
-->
<section id="faq">
<div class="container p-5 text-left">
<h1 class="text-center"> FAQ's</h1>
<p class="text-muted text-center">Frequently Asked Questions</p>
<div id="accordion">
<div class="card">
<div class="card-header" id="headingOne">
<h5 class="mb-0">
<button class="btn btn-link" data-toggle="collapse" data-target="#collapseOne" aria-expanded="true"
aria-controls="collapseOne">
How do I enroll in this course?
</button>
</h5>
</div>
<div id="collapseOne" class="collapse show" aria-labelledby="headingOne" data-parent="#accordion">
<div class="card-body">
Click on the Enroll Now on Udemy Button at the top of this page. You will be redirected to the Udemy Page. There you can buy the course.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingTwo">
<h5 class="mb-0">
<button class="btn btn-link collapsed" data-toggle="collapse" data-target="#collapseTwo"
aria-expanded="false" aria-controls="collapseTwo">
How long is the course access?
</button>
</h5>
</div>
<div id="collapseTwo" class="collapse" aria-labelledby="headingTwo" data-parent="#accordion">
<div class="card-body">
The course videos and practice problems come with a lifetime access.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingThree">
<h5 class="mb-0">
<button class="btn btn-link collapsed" data-toggle="collapse" data-target="#collapseThree"
aria-expanded="false" aria-controls="collapseThree">
Will there be any Certificate of Completion?
</button>
</h5>
</div>
<div id="collapseThree" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="card-body">
Yes, you will get an instructor signed certificate from Udemy after finishing this course.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingFour">
<h5 class="mb-0">
<button class="btn btn-link collapsed" data-toggle="collapse" data-target="#collapseFour" aria-expanded="false"
aria-controls="collapseFour">
What are the pre-requisties for this course?
</button>
</h5>
</div>
<div id="collapseFour" class="collapse" aria-labelledby="headingFour" data-parent="#accordion">
<div class="card-body">
Basics of C++ is expected for this course. I am planning to work on other Courses
which will also cover these basics.
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingFive">
<h5 class="mb-0">
<button class="btn btn-link collapsed" data-toggle="collapse" data-target="#collapseFive" aria-expanded="false"
aria-controls="collapseFive">
I have already taken your other courses, should I do this course?
</button>
</h5>
</div>
<div id="collapseFive" class="collapse" aria-labelledby="headingFive" data-parent="#accordion">
<div class="card-body">
Yes, you can. This course is totally re-designed, with interative lectures, newer problems, and is deeply focussed on data strucutures & algorithms.
If you want to revisit topics in short time, or practice breath & depth of topics, this course is for you.
</div>
</div>
</div>
</div>
</div>
<div style="height:100px"></div>
</section>
<!--Footer-->
<section id="footer" class="p-5">
<div>
<!--<div id="footer_img">
<img src="imgs/footer.svg" class="w-100 d-none d-lg-block">
<img src="imgs/rectangle_middle.svg" class="w-100 d-block d-lg-none">
</div>-->
<div class="container text-center">
<img src="imgs/logo_white.png" width="200px">
<div class="row mt-5 text-center text-light">
<div class="col-sm-6 text-left">
<h4 class="lead"><strong>Get in Touch</strong></h4>
<br>
<p><i class="fa fa-envelope fa-2x" aria-hidden="true"> </i> [email protected]
</p>
<a class="social-link" target="_blank" href="https://www.linkedin.com/company/codingminutes/"><p><i class="fa fa-linkedin-square fa-2x" aria-hidden="true"> </i> Follow on LinkedIn
</p></a>
<a class="social-link" href="https://www.youtube.com/channel/UCWrVQZ07TBumcwV0YbcH4Kg?view_as=subscriber" ><p><i class="fa fa-youtube-play fa-2x" aria-hidden="true"> </i> Subscribe to Youtube Channel
</p></a>
<p><i class="fa fa-whatsapp fa-2x" aria-hidden="true"> </i> +91 8947050005
</p>
</div>
<div class="col-sm-6 text-left">
<h4 class="lead"><strong>Coding Minutes</strong></h4>
<p class="text-white">Coding Minutes was started with a mission to provide affordable & high quality
coding education for everyone. With Udemy as
our technology partner, we wish to bring all our courses with top-notch content to our students at pocket
friendly prices with lifetime access. </p>
</div>
</div>
<hr>
<p class="text-center text-white-50 mt-5"> ©2021 Coding Minutes. All rights reserved </p>
</section>
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"
integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"
integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy"
crossorigin="anonymous"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-H1SS2D4BBD"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-H1SS2D4BBD');
</script>
</body>
</html>