Latest From My Blog

Data Structure: Binary Search Tree

Data Structure: Binary Search Tree

Until now all data structures that we have covered (Stack,Queue,Linked List) are linear in nature ie. they have a definite order of placement. Now we shall study Binary Trees which requires a different thought process...

Programming: C++ Program to Implement Stack Using Linked List

Programming: C++ Program to Implement Stack Using Linked List

This C++ program, using iteration, implements the list of elements removed from the stack in last in first out mode using a linked list. A linked list is an ordered set of data elements, each containing a link to its successor. Here...

Programming: C++ program to implement Heap

Programming: C++ program to implement Heap

A heap is a partially sorted binary tree. Although a heap is not completely in order, it conforms to a sorting principle: every node has a value less (for the sake of simplicity, we will assume that all orderings are from...

Programming: C Program to Represent Graph Using Adjacency Matrix

Programming: C Program to Represent Graph Using Adjacency Matrix

This C program generates graph using Adjacency Matrix Method. A graph G,consists of two sets V and E. V is a finite non-empty set of vertices.E is a set of pairs of vertices,these pairs are called as edges V(G) and E(G)...

Knowledge: Some good computer tricks 2

Knowledge: Some good computer tricks 2

1. Some trick for Gmail users To open only unread emails , just type is:unread in search box. You can also open is:starred , is:read , is:muted , is:chat. if you want to open unread emails from inbox only then...

Knowledge: Some good computer tricks

Knowledge: Some good computer tricks

1. Finding Windows Product Key Assuming you can boot your computer without any problems, you can easily create a simple VBscript that will read the value out of the registry and then translate it into the format that...

GSM: Why is the channel spacing in GSM 900 just 200KHz?

GSM: Why is the channel spacing in GSM 900 just 200KHz?

I've came across this question so many times in the period of telecommunication learning. Every time I asked the question, there was no one to properly answer the question, may be it was because I couldn't phrase the question...

Programming: Reverse a stack using Recursion

Programming: Reverse a stack using Recursion

You are not allowed to use loop constructs like while, for..etc, and you can only use the following ADT functions on Stack S: 1. isEmpty(S) 2. push(S) 3. pop() Solution The idea of the solution is to hold all values...

Pages (5)12345 Next
+