Тёмный

std::unordered_set In C++ 

CppNuts
Подписаться 75 тыс.
Просмотров 33 тыс.
50% 1

JOIN ME
-----
RU-vid 🎬 / @cppnuts
Patreon 🚀 / cppnuts
COMPLETE PLAYLIST
------------
C++ Tutorial For Beginners: • Introduction To C++
STL (Standard Template Library): • STL In C++
ThreadIng In C++: • Multithreading In C++
Data Structures: • Data Structure
Algorithms: • Binary Search
Design Patterns: • Factory Design Pattern...
Smart Pointers: • Smart Pointer In C++
C++14: • Digit Separator In C++
C++17: • std string_view in C++...
C++ All Type Casts: • static_cast In C++
INTERVIEW PLAYLIST
------------
C++ Interview Q&A: • Structural Padding & P...
C++ Interview Q&A For Experienced: • How delete[] Knows How...
Linked List Interview Questions: • Find Kth Node From Bac...
BST Interview Questions: • Search Element In Bina...
Array Interview Questions: • Reverse An Array
String Interview Questions: • Check String Is Palind...
Bit Manipulation Questions: • Find Set Bit In Intege...
Binary Tree Interview Question: • Invert Binary Tree
Sorting Algorithms: • Bubble Sort
C++ MCQ: • Video
C MCQ: • What printf returns af...
C Interview Questions: • Designated Initializat...
QUICK SHORT VIDEOS
-------------
C++ Short : • C++ Short Videos
C Short : • Shorts C Programming MCQ
NOTES:
0. Unordered Set is a associative container that contains set of unique objects.
1. Search, insertion, and removal have average constant-time complexity.
2. Internally, the elements are organised into buckets.
3. It uses hashing to insert elements into buckets.
4. This allows fast access to individual elements, since once a hash is computed,
it refers to the exact bucket the element is placed into.
WHY UNORDERED SET?
0. maintain a collection of unique items with fast insertion and removal.
#dsa #algorithm #cpp #programming #tutorial #competitiveprogramming #interviewquestions #softwareengineering #computerscience

Опубликовано:

 

3 фев 2020

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 50   
@lazizaakramova8602
@lazizaakramova8602 11 месяцев назад
I am very happy because I found your channel, I have a goal now to watch every single video here and leave a comment@like after it! Thank you once again!
@Serafhunter
@Serafhunter 3 года назад
Really liked the in-depth explanation you gave, thanks for making videos with such detail
@lazizaakramova8602
@lazizaakramova8602 11 месяцев назад
Thank you very much you are one of my favourite teachers now! Very grateful for your efforts!
@vivekyuvan
@vivekyuvan Год назад
thank you got clear idea about sets and unordered sets
@jiangfenglin4359
@jiangfenglin4359 3 года назад
Thank you very much for making this series! It's very helpful :)
@CppNuts
@CppNuts 3 года назад
Glad it was helpful!
@teetanrobotics5363
@teetanrobotics5363 4 года назад
thank you so much for these videos bro. They are really very informational.
@behindthescene4406
@behindthescene4406 4 года назад
Bro I didn't understand line 24 can u kindly explain me
@andreasostlund4081
@andreasostlund4081 9 месяцев назад
Needed a Hashtable for leetcode 217, solid video.
@collwyr
@collwyr 4 года назад
really liked this video as I was struggling to find some decent documentation about these DS's without it being stupidly abstract. but I felt this video could have spent a bit more time on the example you created and potentially could have shown maybe one or two more to help people understand more.
@harshsahu7825
@harshsahu7825 4 года назад
Great work, once again!!
@CppNuts
@CppNuts 4 года назад
Thanks for the comment..
@behindthescene4406
@behindthescene4406 4 года назад
Bro I didn't understand line 24 can u kindly explain me
@karoldrazek7614
@karoldrazek7614 4 года назад
Thank you! :)
@CppNuts
@CppNuts 4 года назад
You're welcome!
@es-yy2cm
@es-yy2cm Год назад
Your English is very understandable and clear!
@CppNuts
@CppNuts Год назад
Thanks man..
@Akshay90909
@Akshay90909 3 года назад
Most valuable videos please keep it up
@CppNuts
@CppNuts 3 года назад
Thanks man..
@udaysingh7748
@udaysingh7748 4 года назад
you are amazing so amazing You deserve in IIT as professor
@CppNuts
@CppNuts 4 года назад
Glad that you think like this..
@mohammedsuhailbasha4860
@mohammedsuhailbasha4860 4 года назад
Very nice explaination sir thanks sir.please upload videos in data structures sir.we are eagerly waiting for your videos in data structures sir
@CppNuts
@CppNuts 4 года назад
Even i m waiting..
@aasifali9139
@aasifali9139 2 года назад
thx man this video was really helpful.
@CppNuts
@CppNuts Год назад
Glad it helped
@ankitahlawat4812
@ankitahlawat4812 4 года назад
thank you
@CppNuts
@CppNuts 4 года назад
Welcome..
@wasilislam6663
@wasilislam6663 3 года назад
Nicely done
@CppNuts
@CppNuts 3 года назад
Thanks man.
@karthickkumar1380
@karthickkumar1380 3 года назад
God You;
@CppNuts
@CppNuts 3 года назад
Thanks dude..
@crushed_oreos
@crushed_oreos 2 года назад
Thanks man
@CppNuts
@CppNuts 2 года назад
Welcome man..
@bystrovm1424
@bystrovm1424 3 года назад
Thank you
@CppNuts
@CppNuts 3 года назад
Welcome
@michaelfunny1989
@michaelfunny1989 4 года назад
Thanks for the videos. Can please make a video on lvalue, rvalue and move semantics?
@CppNuts
@CppNuts 4 года назад
Yes but little later..
@behindthescene4406
@behindthescene4406 4 года назад
Bro I didn't understand line 24 can u kindly explain me
@adward7336
@adward7336 4 года назад
use of unorder_set and unordered_map in competative examination
@dhanushambrose4179
@dhanushambrose4179 4 года назад
sir try to make videos on DAA concepts.
@agnichatian
@agnichatian 2 года назад
strange compile error when I try to store my own Point2f class objects;. They have only 2 floats x,y as data, follow rule of 5, have ==, defined. Do we need a user class hash function ? the key error seems to be: ...\type_traits(2241): note: 'std::_Conditionally_enabled_hash::_Conditionally_enabled_hash(const std::_Conditionally_enabled_hash &)': function was explicitly deleted with [ _Kty=Point2f ]
@vishalagrahari1520
@vishalagrahari1520 4 года назад
Very helpful!
@CppNuts
@CppNuts 4 года назад
Glad it was helpful!
@poojarawatvlogs3754
@poojarawatvlogs3754 4 года назад
Can you make video on Qt tutorial?
@CppNuts
@CppNuts 4 года назад
Yes but it has to wait longer, i have committed DS Algo before that.
@rajeevranjan8260
@rajeevranjan8260 4 года назад
sir can you add videos on how to use stl to solve problems of tree and graphs
@shuvrodas6399
@shuvrodas6399 3 года назад
Why output is 3 2 1 4. Not 4 1 2 3??
@tahmidbhuiyan5591
@tahmidbhuiyan5591 2 года назад
setUH
@caleb7799
@caleb7799 2 года назад
stop poping your ts
Далее
std::unordered_multiset In C++
12:33
Просмотров 8 тыс.
Multimap In C++
16:22
Просмотров 36 тыс.
My Puzzle Robot is 200x Faster Than a Human
21:21
Просмотров 7 млн
Faster than Rust and C++: the PERFECT hash table
33:52
Просмотров 523 тыс.
Simulating the Evolution of Rock, Paper, Scissors
15:00
Back To Basics: C++ Containers
31:41
Просмотров 179 тыс.
the TRUTH about C++ (is it worth your time?)
3:17
Просмотров 639 тыс.