Unordered_map.find() in cpp

is the implementation of map.find()and the map.search () function (implemented in the course) same?

hey @sk14452, map.search() is not even present in Unordered_map STL

I was talking about search fuction which we implemented in the course

hey @sk14452, you mean you have created your own search function to perform search operation.

Yes.
Have a look on course content hashmap implementation Prateek bhaiya implemented search function I was asking ki is that implementation is same as standard implementation

hey @sk14452, this search function is returning NULL is matched not found but find function will return address to end of the map.