16
Apr 10Rain
I like rain. I like the way that people crinkle up their faces when they are forced to walk through it. I like the way that they hunker down, believing that if they could only make themselves smaller, they would be able to dodge the water droplets. I think that people tend to be even more encapsulated in their own individual worlds. There are fewer conversations. Everyone just looks at the ground and grimaces.
On a completely different note, I just looked at my visitor counter. Who are you? I haven’t really advertised this site in years. I am not writing anything of significance. I mean it’s on the internet, so I obviously don’t mind, but I am curious. I’m just surprised that people are actually looking at it. I need to do a lot of work on the site. Right now it is in lazy mode. I would never have thought that I would be using a theme created by someone else. Oh well. That can wait until exams are over.
Oh I just figured it out. Hi Mom and Dad.
14
Apr 10Today
public Graph reverseGraph(){
Graph revGraph = new Graph();
for(Node node: nodes.values()){
revGraph.addNode(node);
}
for(Node node: nodes.values()){
if(getAdjList().get(node.getLabel()) != null){
for(int i=0; i < getAdjList().get(node.getLabel()).size(); i++){
revGraph.addEdge(getAdjList().get(node.getLabel()).get(i), node);
}
}
}
return revGraph;
}
Today is the day that I officially stopped liking programming. I’ve been working on this assignment for a week, and it is going to be late, because it is due in 3 minutes. That bit of code counts for 1/5 of the assignment. It took me forever.



