There’s this amazing movie you might not have heard about which is called DeathNote which is being brought to you by NCM Fathom and Viz Pictures.
If you’ve ever found manga like Naruto interesting this movie is for you. It’s about Light trying to save the world using a notebook he just found. It’s a magical [...]
Making a new Binary Tree by creating an exact copy of an existing Binary Tree.
tree_node *copyTree(tree_node *current=NULL, tree_node *otherRoot, tree_node *copiedRoot, int count=0)
{
if (count==0)
{
copiedRoot = otherRoot;
}
if(otherRoot == NULL)
current = NULL;
else
{
current = new tree_node;
current->info = otherRoot->info;
copyTree(current->left, otherRoot->left,copiedRoot, count+1);
copyTree(current->right, otherRoot->right, copiedRoot, count+1);
}
return copiedRoot;
}
I just hate to remind myself looking at this screenshot. Almost the whole of India’s population using broadband would see at least 2000kb/s on that chart without realising how much better it is. Damn these speed caps.
MTNL has unknowingly turned off all caps on unlimited usage plans in certain areas of Delhi. Wonder when they’re [...]
I missed American Idol last year and this 2.5 hour episode of Idol Gives Back was by far the best hosted TV show I’ve seen. Talking about Simon’s nipples poking Paula and seeing Randy dancing with his bass guitar. Excellent show.
They’ve collected an easy $20 million yesterday. Wonder when we’re going to have something similar [...]
A two and a half hour flight delayed by two and a half hours. Jet Airways. A little surprising. Reached Chennai by 3 on 23rd. Didn’t do much the next two days, played around with my mama’s 42″ projection TV and setup Tata Indicom PPPOE(pain in the arse, OpenDNS came to the rescue) on his [...]