摘要:7. write a function cn random an array.public class xiaodan_random { Random rand = new Random(); public void swap(int[] array, int i, int j){ ...
阅读全文
摘要:1. what is hash table? how to implement in C? how to deal withconflicts? (linkedlist, linear probing, double hashing...etc)什么是hashtable, hash function...
阅读全文
摘要:there I write down the restaurant system.public class TimeSpan { String start; String end;}public class Table { int tableid; String type; ...
阅读全文
摘要:http://ydtech.blogspot.com/2010/06/state-design-pattern-by-example.html
阅读全文
摘要:Design a phone book.package phonebook;public class PhoneBookEntry { private String name; private int number; public PhoneBookEntry(String...
阅读全文
摘要:public interface Furniture { public void stressTest(); public void fireTest();}public abstract class Chair implements Furniture {public abstract...
阅读全文
摘要://不觉中 已经全力找工作好久好久了。大概有1年半了。身心疲惫,不要放弃。曙光快来了。1.tic tac toe//http://www.ntu.edu.sg/home/ehchua/programming/java/JavaGame_TicTacToe.html 类似相关棋牌坐标对战游戏 一通百...
阅读全文
摘要:what happens when you type in a URL in browserIn an extremely rough and simplified sketch, assuming the simplest possible HTTP request, no proxies and...
阅读全文
摘要:public static String lcs(String a, String b){ int aLen = a.length(); int bLen = b.length(); if(aLen==0 || bLen==0) return ""; if(a.char...
阅读全文