Tacklemantra - tacklemantra.com

General Information:
Latest News:
Comments in C++ 16 Jul 2013 | 11:10 am
Program comments are explanatory statements that We can include in the C++ code. Comments helps us in reading & understanding it’s source code. A comments may start anywhere in the line, & whatever fo...
C++ Program Structure 26 Jun 2013 | 12:44 pm
Let us Begin with a simple C++ program that prints a Stringon the screen . #include // include header file using namespace std; // main() is where program execution begins. int main() { cout <...
Applications of C++ 21 Jun 2013 | 12:46 pm
C++ is a versatile language for handling very large programs. It is suitable for virtually any programming task including development of editors, compilers, databases, communication systems & any co...
What is C++ ? 17 Jun 2013 | 01:14 pm
C++ is an object-oriented programming language. It was developed by “Bjarne Stroustrup” at AT&T Bell Laboratories in Murray Hill,New Jersey,USA, in the early 1980′s.Stroustrup an admirer of Simula 67 ...
Java – The TreeSet Class 17 May 2013 | 02:13 pm
TreeSet provides an implementation of the Set interface that uses a tree for storage. Objects are stored in sorted, ascending order. Access and retrieval times are quite fast, which makes TreeSet an e...
Java – The HashSet Class 17 May 2013 | 01:53 pm
HashSet extends AbstractSet and implements the Set interface. It creates a collection that uses a hash table for storage. A hash table stores information by using a mechanism called hashing. In hashin...
LinkedList Class in Java 3 May 2013 | 01:31 pm
The Linked class extends AbstractSequentialList & implements the List interface.It provides a linked list data structure.It provides a linked-list data structure.It has the two constructors, shown her...
Threaded Binary Tree C++ program 21 Aug 2012 | 12:29 am
Program: Generic Threaded Binary Tree 1. Insert Node 2. Display Nodes */ #include #include template class Node { Node *left; T data; Node *right; bool lthread; bool rthread; public: Node(T value) ...
Threaded binary tree 20 Aug 2012 | 11:02 pm
A Threaded Binary Tree is a binary tree in which every node that does not have a right child has a THREAD (in actual sense, a link) to its INORDER successor. By doing this threading we avoid the recur...
Extended Binary tree 20 Aug 2012 | 04:31 pm
A Binary Tree can be converted to an extended binary tree by adding new nodes to its leaf nodes & to the nodes that have only one child.These new nodes are added in such a way that all the nodes in th...