
OOD
文章平均质量分 82
我是真的不会编程
我相信,现在努力编程,早晚有一天我会出任CEO,迎娶白富美,登上人生高峰!
展开
-
OOD - Arithmetic Expression Tree
package OO_Problems;public class ArithmeticExpressionTree { public interface AENode{ public double evaluate() throws EvaluationException; } public class AEValueNode implements AENode{ priva原创 2015-01-26 16:01:19 · 599 阅读 · 0 评论 -
Design a valet parking system.
Design a valet parking system. Requirements of the valet parking system should be: 1. Customer are given a ticket that they can use to redeem to get their vehicle back 2. Parking spots come in thr原创 2015-01-30 08:11:59 · 608 阅读 · 0 评论 -
Maze problem 的OO Design - 写给煜小堆
Question: How do you design a Maze and what kind of data structures you use for Maze. In addition, write a method to print the shorted path from start to end point.Example:#############原创 2016-02-28 12:35:08 · 517 阅读 · 0 评论