首页 > > 详细

讲解数据结构设计、Python语言程序讲解、调试Matlab、Matlab编程调试

/**
* Your implementation of the LookupInterface. The only public methods
* in this class should be the ones that implement the interface. You
* should write as many other private methods as needed. Of course, you
* should also have a public constructor.
*
* @author // TODO: Add your name here
*/


public class StudentLookup implements LookupInterface {

public StudentLookup() {

}
@Override
public void addString(int amount, String s) {

}
@Override
public int lookupCount(String s) {
return 0;
}
@Override
public String lookupPopularity(int n) {
return null;
}
@Override
public int numEntries() {
return 0;
}

}
 

联系我们
  • QQ:99515681
  • 邮箱:99515681@qq.com
  • 工作时间:8:00-21:00
  • 微信:codinghelp
热点标签

联系我们 - QQ: 99515681 微信:codinghelp
程序辅导网!