Thursday, June 21, 2012

How to reverse a string using stack

this example shows how to reverse a string using stack
with the help of user defined method StringReverserThroughStack().
 
Sample Output :
JavaStringReversal
Reversed:lasreveRgnirtSavaJ

 
import java.io.IOException;
public class StringReverserThroughStack {

Monday, June 11, 2012

Bob Arum refuses Pacquiao-Bradley rematch, wants investigation into scoring controversy

LAS VEGAS – Promoter Bob Arum was still fuming about the split-decision verdict that went against Manny Pacquiao on Saturday and said there would be no rematch with Timothy Bradley unless Nevada attorney general Catherine Cortez Masto launches an investigation.
Bradley, a 4-1 underdog, upset Pacquiao in one of the most controversial outcomes in years to take the World Boxing Organization welterweight title.

Friday, June 8, 2012

Postfix expression using C++ code

Sample Output
// this program code is a postfix expression can be evaluated using a Stack given.
// created by: jieng46
 
#include <iostream> 
#include <iomanip> 
#include <conio.h>  
using namespace std;
struct Node{
    float number;
    Node *next;

First Come First Serve Algorithm using C++ code

Sample Output
// this program code is a First come First served Algorithm.// created by: jieng46

#include<iostream>
#include<stdio.h>
#include<conio.h>

using namespace std;
int main()
{

Thursday, June 7, 2012

'Justice League’ movie hopes to finally bring Batman and Superman together on screen

If teaming up worked for Iron Man, Thor and The Hulk, it has to work for Batman, Superman, and Wonder Woman, right?
Warner Bros. Pictures seems to think so, as Variety reported yesterday that the studio has hired a new writer to bring DC Comics' "Justice League" to the big screen.  Just as "The Avengers" assembled the biggest heroes from Marvel Comics, "Justice

Friday, June 1, 2012

Floyd Mayweather and Manny Pacquiao nearly agreed to a 2010 fight, documents show

AS VEGAS – Though sports fans remain desperate to see Floyd Mayweather Jr. fight Manny Pacquiao, in 2010 the superstar boxers came closer to fighting than anyone previously realized, according to a document obtained by Yahoo! Sports.
A contract sent on Dec. 11, 2009, by Golden Boy Promotions on behalf of Mayweather to Top Rank on behalf of Pacquiao proposed a 50-50 financial split between the sides for a fight that would have been held March 13, 2010. The eight-page agreement is so detailed that it
//