📣 独立日限时特惠: VIP通行证立减$68
查看: 1400| 回复: 0
跳转到指定楼层
上一主题 下一主题
收起左侧

[CareerCup] CC上一道关于抽象类的设计问题

🔗
MTC | 只看该作者 |倒序浏览
全局:

注册一亩三分地论坛,查看更多干货!

您需要 登录 才可以下载或查看附件。没有帐号?注册账号

x
CC150 3.7 adopt The Oldest Animal

题目:
An animal shelter holds only dogs and cats, and operates on a strictly "first in, first out" basis. People must adopt either the "oldest" (based on arrival time) of all animals at the shelter, or they can select whether they would prefer a dog or a cat (and will receive the oldest animal of that type). They cannot select which specific animal they would like. Create the data structures to maintain this system and implement operations such as enqueue, dequeueAny, dequeueDog and dequeueCat.You may use the built-in LinkedList data structure.




code:
  1. code:
  2. 1)Anima.java
  3. package Question3_7;
  4. public abstract class Animal
  5. private int order ;
  6. protected String name ;
  7. public Animal(String name){
  8. this.name =name;

  9. }

  10. public abstract String name();//抽象方法

  11. public void setOrder(int order){

  12. this.order =order;
  13. }

  14. public int getOrder(){

  15. return order ;

  16. }


  17. public boolean isOlderThan(Animal a){

  18. return this .order <a.getOrder();

  19. }

  20. }

  21. 2)Cat.java
  22. package Question3_7;
  23. public class Cat extends Animal{
  24. public Cat(String name){

  25. super(name);
  26. }

  27. public String name(){

  28. return "Cat: " +name ;

  29. }
  30. }

  31. 3)Dog.java
  32. package Question3_7;
  33. public class Dog extends Animal{
  34. public Dog(String name){

  35. super(name);
  36. }

  37. public String name(){

  38. return "Dog: " +name ;

  39. }
  40. }
  41. 3)AnimalQueue.java

  42. package Question3_7;
  43. import java.util.LinkedList;
  44. public class AnimalQueue{
  45. LinkedList<Dog> dogs=new LinkedList<Dog>();
  46. LinkedList<Cat> cats=new LinkedList<Cat>();
  47. private int order ;

  48. public void enqueue(Animal a){
  49. a.setOrder(order);
  50. order++;

  51. if(a instanceof Dog) dogs .addLast((Dog) a);
  52. else if (a instanceof Cat) cats.addLast((Cat) a);


  53. }

  54. public Animal dequeueAny(){
  55. if(dogs .size()==0) {

  56. return cats.poll();

  57. }else if(cats .size()==0){
  58. return dogs.poll();

  59. }

  60. Dog dog=dogs.peek();
  61. Cat cat=cats.peek();

  62. if(dog.isOlderThan(cat)){

  63. return dogs.poll();
  64. }else{
  65. return cats.poll();


  66. }


  67. }
  68. public Dog dequeueDog(){

  69. return dogs .poll();

  70. }
  71. public Cat dequeueCat(){

  72. return cats .poll();

  73. }
  74. }
  75. 4)Question.java
  76. package Question3_7;

  77. public class Question {

  78.    

  79.     public static void main(String[] args){
  80. AnimalQueue animals=new AnimalQueue();
  81. animals.enqueue(new Cat( "Callie"));
  82. animals.enqueue(new Cat( "Kiki"));
  83. animals.enqueue(new Dog( "Fido"));
  84. animals.enqueue(new Dog( "Dora"));
  85. animals.enqueue(new Cat( "Kari"));
  86. animals.enqueue(new Dog( "Dexter"));
  87. animals.enqueue(new Dog( "Dobo"));
  88. animals.enqueue(new Cat( "Copa"));
  89. System.out.println(animals.dequeueAny().name());   
  90. System.out.println(animals.dequeueAny().name());   
  91. System.out.println(animals.dequeueAny().name());
  92. System.out.println(animals.dequeueCat().name());
  93. System.out.println(animals.dequeueDog().name());
  94. }
  95. }
复制代码
感觉这里实现多态没必要用抽象类啊,一般用抽象类实现多肽的好处是啥?


上一篇:Leetcode个人刷题思路和自我督促贴
下一篇:面试前是要把leetcode和CC都刷了么
您需要登录后才可以回帖 登录 | 注册账号
隐私提醒:
  • ☑ 禁止发布广告,拉群,贴个人联系方式:找人请去🔗同学同事飞友,拉群请去🔗拉群结伴,广告请去🔗跳蚤市场,和 🔗租房广告|找室友
  • ☑ 论坛内容在发帖 30 分钟内可以编辑,过后则不能删帖。为防止被骚扰甚至人肉,不要公开留微信等联系方式,如有需求请以论坛私信方式发送。
  • ☑ 干货版块可免费使用 🔗超级匿名:面经(美国面经、中国面经、数科面经、PM面经),抖包袱(美国、中国)和录取汇报、定位选校版
  • ☑ 查阅全站 🔗各种匿名方法

本版积分规则

>
快速回复 返回顶部 返回列表