Ouran high school host club (my favorite anime)
Looking for a quiet place to study, Haruhi stumbles upon the Third Music Room, a place where the Ouran high school host club gathers, a group of six extremely attractive male students; Takashi Morinozuka, called "Mori"; follows Hunny as a best friend Mitsukuni Haninozuka, called "Hunny". Twins Kaoru and Hikaru Hitachiin; stick together and thinks everyone else around them are uneducated outsiders. Tamaki Suoh, the leader of the club and creator and Kyoya Ootori ,who manages all the events for the club. During their first meeting, Haruhi accidentally knocks over and breaks a vase valued at ¥8,000,000 and is told she was in debt to them for her action. She then joins the club, dressed like a boy in order to pay off her debt.
|
traversing a directed graph (code)
http://h1.ripway.com/vedcruzer111/graph.h
http://h1.ripway.com/vedcruzer111/edge.h
http://h1.ripway.com/vedcruzer111/vertex.h
This is my code for vertex input
#include
#include
#include "edge.h"
#include "vertex.h"
#include "graph.h"
#include
//##################################################################
//############## ###################
//############## vertex ###################
//##################################################################
Vertex::Vertex(char theData, Vertex *nextVert) {
data = theData;
next = nextVert;
edges = NULL;
}
Vertex:: ~Vertex() {
delete next;
delete edges;
}
char Vertex::getData() {
return data;
}
void Vertex::printEdges() {
if (edges == NULL)
cout << "vertex " << getData() << " has no edges\n";
else {
cout << "vertex " << getData() << " has edges to: ";
edges -> print();
}
}
void Vertex::printGraph() {
printEdges();
if (next != NULL)
next -> printGraph();
}
void Vertex::connectTo(Vertex *Vert) {
Edge *newEdge = new Edge(Vert, edges);
edges = newEdge;
}
Vertex *Vertex::getNext() {
return next;
}
//##################################################################
//############## ###################
//############## vertex ###################
//##################################################################
//##################################################################
//############## ###################
//############## edge ###################
//##################################################################
Edge *Vertex::getFirstEdge() {
return edges;
}
Edge::Edge(Vertex *Vert, Edge *nextEdge) {
end = Vert;
next = nextEdge;
}
Edge::~Edge() {
delete next;
}
Vertex *Edge::getEnd() {
return end;
}
void Edge::print() {
cout <<> getData() << " ";
if (next == NULL)
cout << endl;
else {
next -> print();
}
}
Edge *Edge::getNext() {
return next;
}
//##################################################################
//############## ###################
//############## edge ###################
//##################################################################
//#####################################################################
Graph::Graph() {
first = NULL;
}
Graph::~Graph() {
delete first;
}
Vertex *Graph::find(char theData) {
Vertex *vPtr = first;
while (vPtr != NULL) {
if ( vPtr -> getData() == theData)
return vPtr;
vPtr = vPtr -> getNext();
}
return NULL;
}
bool Graph::AddVertex(char theData) {
if ( find(theData) != NULL )
return false;
Vertex *newVertex = new Vertex(theData, first);
first = newVertex;
return true;
}
bool Graph::AddEdge(char Begin, char End) {
Vertex *vEnd = find(End);
if (vEnd == NULL) return false;
Vertex *vBegin = find(Begin);
if (vBegin == NULL) return false;
vBegin -> connectTo(vEnd);
return true;
}
void Graph::print() {
if (first == NULL)
cout << "Graph has no vertexes " << endl;
else
first -> printGraph();
}
//###############################################################################
//############################################################################
int main() {
Graph myGraph;
char vertex;
int choice;
char Begin, End;
myloop:
system("cls");
cout<<"[1.] Add vertex\n";
cout<<"[2.] Add edge\n";
cout<<"[3.] show graph\n\n";
cout<<"Enter mo choice mo: ";
cin>>choice;
if(choice==1)
{
cout<<"Enter the vertex: ";
cin>>vertex;
myGraph.AddVertex(vertex);
goto myloop;
}
else if(choice==2){
cout<<"Enter begin: ";
cin>>Begin;
cout<<"Enter End: ";
cin>>End;
myGraph.AddEdge(Begin, End);
goto myloop;
}
else if(choice==3){
myGraph.print();
system("pause");
goto myloop;
}
system("pause");
return 0;
}
|
Summer is near
|
latest movie Ive seen(street fighter legend of chun li)
The forces of darkness are led by Bison (Neal McDonough), a crime boss of seemingly limitless power, and whose past holds a shocking secret. Bison's syndicate, Shadaloo, is taking over the slums of the Thai capital, a task overseen by Balrog (Michael Clarke Duncan), a massively built enforcer and killer. Also in Bison's employ is the assassin Vega (Taboo, of the group The Black Eyed Peas), a masked talon-wielding warrior, whose weapon is tailor-made for slashing and stabbing attacks. Bison's attache is the beautiful but deadly Cantana (Josie Ho).
Reviews:
It's a cheerfully stupid endeavor, enlivened by some gnarly fights and endullened by all the talky stuff in between.
When Chris Klein yells "Bomb! Everybody Out!", he just as well could have been talking about this movie too.
|
Am I wrong?
|
You and me
.....After a few months
I became so much happy because the girl of my life was mine, but many problems came and I changed into someone I shouldn't be. I made her cry in front of my eyes, I embarrassed her. I was a complete son of a bitch, but as I write this story. I promise to become better for her, to be a person she could be proud of. If she reads this blog, I only ask of one thing, forgiveness. Maybe The person she knew from the start was still there only hiding at the deepest parts of my heart, and only her could bring it out again...
|
once upon a recollection
|
Sleep - Rivermaya
Tonight's the first night
You're no longer in my arms
A little colder
Nothing but the darkness and the stars
My hand wanders through
The space where you used to be
I really wish that you'd
Still come home to me
Until then I'll sleep
Sleep.
Remember yesterday
When your smile filled every room
Imagined forever with you
Now you're gone too soon
I can feel you calling
There's no place that I'd rather be
Just here with you, sleeping
If only in my mind
Until then I'll sleep
Sleep.
I can feel you calling
There's no place that I'd rather be
Just here with you, sleeping
If only in my mind
Until then I'll sleep
Sleep.
|
Quicktime installer download
here's a sample of the software, just download here.
Mirror 1 quicktime download by cloud
|
Top 10 Sites To Make Money With Your Travel Photos
Dressed to kill
Dressed To Kill - New Found Glory
I know it's hard for you
To understand what I'm going through
But now I sit here to remind myself
You're always dressed to kill
And you feel like you owe it to the world
But you owe it to yourself
And you're, you're not here
And I can't stop pretending
That you're forever mine...
And I
I can't dream anymore since you left
I miss you singing me to sleep
I can't wake anymore in your arms
I miss you singing me to sleep
Cheer up my friends all say
You're better alone anyways
But you're always on tour
And you're never home
I'm always dressed to kill
And I feel like I owe it to the world
But I owe it to myself
And you're, you're not here
And I can't stop pretending
That you're forever mine...
And I
I can't dream anymore since you left
I miss you singing me to sleep
I can't wake anymore in your arms
I miss you singing me to sleep
Cheer up my friends all say...
And I can't stop pretending
That you're forever mine
You're better alone anyways
And you're not here, not here
I can't dream anymore since you left
I miss you singing me to sleep
I can't wake anymore in your arms
I miss you singing me to sleep
Cheer up my friends all say...
|
My photoshop brushes
download here -->CLOUD
|
xion music player
mirror 1 xion media player by cloud
|
youtube downloader free download
mirror 1 Youtube dowloader by cloud
|
Pc booster 2008 download
Mirror 1 Pc booster 2008 by Cloud
|
photoscape download
Mirror 1 Photoscape V3.1 by Cloud
|
Avast antivirus download
Mirror 1 Avast download by Cloud
|







