Tuesday, 16 June 2020
Friday, 13 July 2018
01:59:00
algorithms, bst, C++, Class, code, Concepts, heap, heapify, maxheap, minheap, minheapify, search algorithms, searchalgo
No comments


What is a Binary Heap?
A heap is always (logically) a complete binary tree. It has these basic properties:
All levels are full except possibly the last level
If the last level is not full, it is left justified
It has the either of these two Heap properties in case of
Min Heap: Each...
01:00:00
book sugesstions, books, C++, c++ book, Class, Concepts, headfirst, java, java book, Simple Programs, suggestions, Tips & Tricks
No comments


Hello Everyone!
This is just a short post to hand out some suggestions about books. If you are studying a programmatic language, you may find a lot of books in the market which cover all the details of the language and from basic to complex all of the concepts.
However, I personally recommend HeadFirst...
Sunday, 21 January 2018
05:24:00
algorithms, binary search tree, bst, C++, Class, code, Concepts, Remove in BST, Search, search algorithms, searchalgo, Simple Programs
No comments


This is part 3 for Binary Search Tree, previous posts are Part 1 and Part 2. In this post, I'll attach the complete code also explain how Remove function for BST can be implemented.
There are a few situations possible while removing a node from the BST. There node may have no children,...
Monday, 15 January 2018
02:27:00
algorithms, binary search tree, bst, C++, Class, code, Concepts, Search, searchalgo, Simple Programs
No comments


This is the second post in continuation of the last post on Binary Search Trees in C++.
Just like we did for vectors, linked strings; we will have a struct for Node to represent nodes of the tree. The node will contain a data element, a pointer to the left child and a pointer to...
Tuesday, 9 January 2018
07:28:00
algorithms, binary search tree, bst, C++, Concepts, Search, search algorithms, searchalgo
No comments


What are Search Algorithms?
Search Algorithms provide us with fast search mechanism. Not only search, but insertion and deletion also becomes faster. These sort of Algorithms are normally explored under the subject Data Structures. There are different algorithms like binary search, binary search...