




已阅读5页,还剩7页未读, 继续免费阅读
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
网龙笔试题:1、实现链表的创建,删除和逆序等。#include#includeusing namespace std;typedef struct stuint data;struct stu *next;node, list;node* creatlist(int n)node *h, *p, *s;h = new node;h-next = NULL;p = h;cout “please input ” n ” numbers.”;for(int i = 0; i s-data;s-next = NULL;p-next = s;p = s;return h;void deletelist (node *s, int a)node *p;while(s-data != a)p = s;s = s-next;if(s = NULL)cout next = s-next;delete s;void display(node *h)h = h-next;while(h != NULL)cout data next;cout next;q = p-next;while(q-next != NULL)s = q-next;q-next = p;p = q;q = s;q-next = p;h-next-next = NULL;h-next = q;return h;int main()int n;node *h;cout n;h= creatlist(n);display(h);cout n;deletelist(h, n);display(h);h = reverse(h);display(h);return 0;2、字符串逆序输入文件是in.txt,内容例如如下:hello, everyone.my name is shen, he.ni, ne?则倒序之后为:everyone. hello,he. shen, is name myne? ni,源程序,自己实现的,算法是别人的。呵呵#include#include#include#include#includeusing namespace std;int main()ifstream inFile;ofstream outFile;char *fName;string:size_type b,e;char ch;string line;vector svec;inFile.open(”in.txt”);while(getline(inFile, line) /先获取每一行字符,并存入容器中svec.push_back(line);inFile.close();outFile.open(”out.txt”);vector:iterator iter = svec.begin();while(iter != svec.end()b = 0;e = (*iter).size() 1;while( b e) /将该行字符整体翻转ch = (*iter)b;(*iter)b = (*iter)e;(*iter)e = ch;b+;e;b = 0;e = 0;string:size_type i = 0;while( (*iter)i )if(*iter)i != ) /找到一行的一个单词b = i;while(*iter)i != & (*iter)i)i+;i;e = i;while (b e) /将这个单词翻转ch = (*iter)b;(*iter)b = (*iter)e;(*iter)e = ch;b+;e;i+;outFile *iter endl;+iter;return 0;新大陆面试题:(一)技术面试struts如何表现MVC模式的?Tomcat的部署?UML有哪些图?Struts框架的好处(优点)?答:1、是开源软件,使开发者能更深入的了解其内部实现机制。 2、Taglib是Struts的标记库,灵活动用,能大大提高开发效率;通过一个配置文件,即可把握整个系统各部分之间的联系,这对于后期的维护有着莫大的好处。尤其是当另一批开发者接手这个项目时,这种优势体现得更加明显。 4. 提供Exception处理机制 . 5. 数据库链接池管理 6. 支持I18N Struts+Hibernate框架的优势?答:这两种架构相结合很好地解决了系统的开发效率低、不易于维护、低耦合及可移植性差等问题.介绍一下AJAX?答:AJAX(Asynchronous JavaScript and XML)被赢得广泛的认可,其原因是由于它缩短了Web应用程序和桌面应用程序之间的差距,并在其中充分结合可实现的技术和丰富的用户体验。AJAX是多种技术的综合,它打破了页面刷新的范式,使您的用户快速方便的与 Web 应用程序交互。CVS配置与使用?POJO是什么?答:简单的Java对象(Plain Old Java Objects),POJO对象有时也被称为Data对象,大量应用于表现现实中的对象。概要设计与详细设计等文档的主要包含内容?(二)笔试内容Java基础:Char变量.ClassLoader与Class.JDO.GC.等SQL方面:SQL全称.查询语句. Group by .having.update setJSP方面:静态include与动态include第一部分: Java 基础知识1. What will happen when you attempt to compile and run the following code? public class Test static int x = 5; static int x, y; public static void main(String args) x-; myMethod(); System.out.println(x + y + +x); public static void myMethod() y = x+ + +x; A. compiletime error B. prints: 1 C. prints: 2 D. prints: 3 E. prints: 7 F. prints: 8 2. Which of the following collection classes from java.util package are Thread safe? (Choose two)A. Vector B. ArrayListC. HashMap D. Hashtable 3 Which of the following types is primitive java type?(Choose two)A StringB intC charD Short4Which two demonstrate a has a relationship? (Choose two) A. public interface Person public class Employee extends Person B. public interface Shape public interface Rectandle extends Shape C. public interface Colorable public class Shape implements Colorable D. public class Species public class Animalprivate Species species; E. interface Component class Container implements Component private Component children; 5. What is the result when you compile and run the following code? public class ThrowsDemo static void throwMethod() System.out.println(Inside throwMethod.); throw new IllegalAccessException(demo); public static void main(String args) try throwMethod(); catch (IllegalAccessException e) System.out.println(Caught + e); A. compile error B. runtime error C. compile successfully, nothing is printed. D. inside throwMethod followed by caught: java.lang.IllegalAccessException: demo 6. Which two statements are true for the class java.util.TreeSet? (Choose two) A. The elements in the collection are ordered. B. The collection is guaranteed to be immutable. C. The elements in the collection are guaranteed to be unique. D. The elements in the collection are accessed using a unique key. E. The elements in the collection are guaranteed to be synchronized 点评:TreeSet类实现了Set接口。Set的特点是其中的元素惟一,选项C正确。由于采用了树形存储方式,将元素有序地组织起来,所以选项A也正确。7. What will be printed when you execute the following code? class X Y b = new Y(); X() System.out.print(X); class Y Y() System.out.print(Y); public class Z extends X Y y = new Y(); Z() System.out.print(Z); public static void main(String args) new Z(); A. Z B. YZ C. XYZ D. YXYZ 8. which two declaretions prevent the overriding of a method? A. final void methoda() B. void final methoda() C. static void methoda() D. static final void methoda() E. final abstract void methoda() 9. You want a class to have access to members of another class in the same package which is the most restrictive access modifier that will accomplish this objective? A. public B. private C. protected D. transient E. No access modifier is required 10. which two interfaces provide the capability to store objects using a key-value pair? A. java.util.Map B. java.util.Set C. java.util.List D. java.util.SortedSet E. java.util.SortedMap F. java.util.Collection 11.1) class Super 2) public float getNum()return 3.0f; 3) 4) 5) public class Sub extends Super 6) 7) which method, placed at line 6, will cause a compiler error? A. public float getNum()return 4.0f; B. public void getNum() C. public void getNum(double d) D. public double getNum(float d)return 4.0d; 注意这道题主要考的是方法的overload和override。对于overload,只有参数列表不同,才做为标准,而返回值和访问控制关键字不能做为标准,所以B错在方法名相同,但只有返回值不同,这是错的。C和D是正确的overload。对于override,则访问控制关键字只能更加公有化,异常只能是超类方法抛出的异常的子类,也可以不抛出。返回类型,参数列表必须精确匹配。所以A是正确的override。12. which gets the name of the parent directory of file file.txt? A. String name=File.getParentName(file.txt); B. String name=(new File(file.txt).getParent(); C.Stringname=(new File(file.txt).getParentName(); D.Stringname=(new File(file.txt).getParentFile(); E.Diretorydir=(new File(file.txt).getParentDir(); String name=dir.getName(); 13What happens when you try to compile and run the following application? Choose all correct options. 1. public class Z 2. public static void main(String args) 3. new Z(); 4. 5. 6. Z() 7. Z alias1 = this; 8. Z alias2 = this; 9. synchronized(alias1) 10. try 11. alias2.wait(); 12. System.out.println(“DONE WAITING”); 13. 14. catch (InterruptedException e) 15. System.out.println(“INTERR UPTED”); 16. 17. catch (Exception e) 18. System.out.println(“OTHER EXCEPTION”); 19. 20. finally 21. System.out.println (“FINALLY”); 22. 23. 24. System.out.println(“ALL DONE”); 25. 26. A. The application compiles but doesnt print anything. B. The application compiles and print “DONE WAITING” C. The application compiles and print “FINALLY” D. The application compiles and print “ALL DONE” E. The application compiles and print “INTERRUPTED” 点评:在Java中,每一个对象都有锁。任何时候,该锁都至多由一个线程控制。由于alias1与alias2指向同一对象Z,在执行第11行前,线程拥有对象Z的锁。在执行完第11行以后,该线程释放了对象Z的锁,进入等待池。但此后没有线程调用对象Z的notify()和notifyAll()方法,所以该进程一直处于等待状态,没有输出。14. What results from attempting to compile and run the following code? public class Ternary public static void main(String args) int a = 5; System.out.println(Value is - + (a 5) ? 9.9 : 9); A. print:Value is -9 B. print:Value is -5 C. Compilation error D. None of these第二部
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2025年旅游租车合同范本下载
- 2025【自动化控制系统安装承包合同】自动化控制系统安装包括哪些内容
- 2025品牌鞋类代理合同模板
- 个人销售提成协议合同标准文本
- 中国人保财险销售合同样本
- 前期物业服务合同的终止期限二零二五年
- 猪场技术承包合同二零二五年
- 个人充电桩出租合同标准文本
- 二零二五版试用期劳动合同标准
- 二零二五版外籍人员雇佣合同
- 原发性高血压护理措施
- 人工智能基础(Python实现)-课件 第8章 生成式大模型应用
- JT-T-1045-2016道路运输企业车辆技术管理规范
- 交通运输有限责任公司安全生产费用提取使用制度
- 德阳巴蜀文化介绍
- 三年级下册数学课件-4.1 整体与部分 ▏沪教版 (23张PPT)
- 住 用 房 屋 租 金 计 算 表
- 7.4.2超几何分布 课件(共14张PPT)
- 晶状体相关的继发性青光眼进展课件
- DB33T 1192-2020 建筑工程施工质量验收检查用表统一标准
- 电镀与化学镀
评论
0/150
提交评论