Ive tried so hard

Today is a new accomplishment, Ive learned how to eat with chopsticks!!! wohoho... Me and my girlfriend went to the mall to go shopping when suddenly we tried to eat in a Chinese restaurant. There it was, my worst enemy and my endeavor, the chopsticks. My girlfriend taught me how to use them. luckily, after a few minutes I learned how to use chopsticks. yeah!! yeah!! yeah!!


|

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • Twitter
  • RSS

Ouran high school host club (my favorite anime)

Haruhi Fujioka is a scholarship student at Ouran High School, a fictional school located in Bunkyō, Tokyo. Because of the superlative cost of the school uniform, Haruhi resorts to wearing long slacks, polo shirts and vests. Combined with her large glasses and tousled short hair, Haruhi's look causes her to be confused for a boy.

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.


|

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • Twitter
  • RSS

traversing a directed graph (code)

download he header files:

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;
}


|

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • Twitter
  • RSS

Summer is near

OMG!!! I'm ready for this coming summer, lots of parties and vacations. Many things happened this school year, things I didn't expect to happen. God really has a plan for everything. Maybe your to blind that you only see your problems but trust me, You got a great plan? God has a better one. Its feels just like yesterday when I first came to college, now I'm at 3rd year already. Luckily this semester was the best semester for me, not only this semester but this school year rather. I can't wait to feel the cool breeze of the beach and the hot essence of summer. Its nostalgic every time this season comes, The summer that changed my life...



|

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • Twitter
  • RSS

latest movie Ive seen(street fighter legend of chun li)

Powerful forces are converging on the streets of Bangkok. They are warriors, some of whom possess extraordinary abilities, all of whom are determined to see their side prevail. Some fight for us; the others for unlimited power. Now, they are preparing for the ultimate battle -- of terror versus beauty, light versus darkness, and good versus evil.

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.

-Eric D. Snider, Film.com

When Chris Klein yells "Bomb! Everybody Out!", he just as well could have been talking about this movie too.

- Pete Hammond, Hollywood.com

Gallery:















|

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • Twitter
  • RSS

My created banners for our web develpement class





|

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • Twitter
  • RSS

Am I wrong?

Maybe I'm just exaggerating or something yet maybe I'm just jealous. Would you be jealous if your girlfriend is talking to a cool, handsome, actor type of guy? I'm not a girl but in my place, what I feel is insecurity. I know I'm old enough to think about this childish things. But I don't have much to offer to my girl. I'm just afraid that she would get the happiness she was looking for from another person instead of me. I'm to selfish for that stuff, but its what I'm really feeling. This depression is eating me alive!!!. At the end of all this , My only wish is that she wouldn't leave me. there is also one thing I want to say, and I'm serious about this. If she finds happiness to another person, then I would never take that happiness from her, definitely I would set her free.


|

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • Twitter
  • RSS