Saturday, April 16, 2005

DFS and BFS
Recently had some interesting discussion on algorithms with my friend. We came to the point where question was when to use Depth First Search and when to use Breadth First Search. Not sure about all usages of when to use what. Other then DFS and detection of cycles and DFS maintains Stack and BSF queue what else do you think the situations where these are applicable?

Wednesday, April 13, 2005

Tuesday, April 12, 2005

Monday, April 11, 2005

Is it a good idea to make everything loosely coupled (IOC) and loose advantage of compile time compatibility check or gain more flexibility by using it. Which part is better than other and how worth is the sacrifice?