| 查看: 75 | 回复: 0 | ||
| 当前主题已经存档。 | ||
| 【悬赏金币】回答本帖问题,作者njlizhen将赠送您 40 个金币 | ||
[求助]
java试题求助
|
||
|
时间限定在今天晚上之前,先谢谢各位了! 1. Given a sorted array of ints, write a method to remove the duplicates. Do not use any classes from the java.util package. example: 1,2,3,3,3,4,4,10,13,15,15,17 -> 1,2,3,4,10,13,15,17 int[] removeDuplicates(int[] vals) { } 2. Given two database tables EMPLOYEES COMPENSATION ________________________ _____________________ EMPID NAME SUPERVISOR EMPID BONUS ------------------------ --------------------- 34 Amy 17 5000 17 Ben 34 10 2000 5 Chris 34 34 5000 10 Don 5 ... ... A) Write a SQL statement to return the names of everyone who got a bonus greater than 1000. B) Given an EMPID write a SQL statement to return the names of everyone who directly reports to that person (everyone who has the person as a supervisor) C) GIVEN an EMPID Write a SQL statement to return everyone who is in that person's organization (everyone who either directly or who's supervisor ultimately reports to that person) 3. We define a Node in a binary tree to have a value and both left and right references to other Nodes. The left reference must point to either null or to a Node with a smaller value. The right reference must either point to null or to a Node with an equal or larger value. public Node { public int value; public Node left; public Node right; } We can build a tree by inserting one value at a time. The insertion is done by starting at the root and finding the first node with an appropriate null reference. If we insert 8,5,9,3,3,2,12,4,10 the tree at each step would look like: 8 8 5 8 5 9 8 5 9 3 8 5 9 3 3 8 5 9 3 2 3 8 5 9 3 12 2 3 8 5 9 3 12 2 3 4 8 5 9 3 10 12 2 3 4 A) Write a method that given the root Node prints out the all the values in sorted order. void printOrdered(Node node) { } B) Write a method that given the root Node of the tree inserts a new value. void insertValue(Node node, int value) { } C) If the tree has N nodes what is the average big O time for an insert? D) what is the worst case big O time for an insert? What would the input data look like to generate the worst case. [ Last edited by njlizhen on 2008-4-15 at 11:13 ] |
» 猜你喜欢
求调剂
已经有4人回复
求调剂
已经有4人回复
277材料科学与工程080500求调剂
已经有4人回复
学校已经提交到NSFC,还能修改吗?
已经有9人回复
286分人工智能专业请求调剂愿意跨考!
已经有7人回复
286求调剂
已经有6人回复
280求调剂
已经有10人回复
材料学硕301分求调剂
已经有4人回复
278求调剂
已经有8人回复
求助
已经有5人回复













回复此楼
10