Search found 2 matches

by anirban
Sat Jun 19, 2010 7:19 pm
Forum: Text Formatting
Topic: Textbox Query
Replies: 2
Views: 1520

Re: Textbox Query

Okay thanks a lot!
But sorry to say that I could not find the style I needed as I have pointed to the PDF in the link I have provided.

Any further help please!
by anirban
Sat Jun 19, 2010 5:09 pm
Forum: Text Formatting
Topic: Textbox Query
Replies: 2
Views: 1520

Textbox Query

I want to put the following inside textbox.

FindMincut(undirected graph G)
{
while there are more than 2 nodes in G do
{
pick an edge (u,v) at random in G;
contract the edge, while preserving multi-edges;
remove all loops;
}
output the remaining edges;
}

I tried the following ...