Tag: coding
My son was curious and asked me: “Dad, what do you do as a software engineer?” I was at that time in the car with him, and working on …
In Python, given a dictionary object e.g: data = {"abc": 2, "cde": 10, "def": -1} What are the ways to return the key which has corresponding largest (or smallest) …
August 31, 2020
algorithms, Binary Tree, c / c++, C/C++, code, data structure, interviews, Java, programming languages, Python
A Binary Search Tree (BST) is a commonly used data structure that can be used to search for an item in O(LogN) time. A BST has the following characteristics: …
I am doing a C++ coding exercise, as usual…. And to split a string in C++, the best/easy way is to use the boost library… However, this is not …
Windows OS is full of DLLs (Dynamic Link Library). Each DLL file has some APIs, which can be used whenever needed (avoid re-inventing the wheel). For example, the system …