- 博客(6)
- 收藏
- 关注
原创 文本文件单词的检索与计数
#include#include#define N 100 using namespace std; char str[N][80]; int l[N]; int n;
2010-07-18 19:42:00 1569 2
原创 学生成绩管理系统
#include #include //格式控制#include //文件流#include //字符串系统函数using namespace std;//学生结构体struct student { public: student *next; string name; int num; int Soft,Cisco,
2010-07-18 19:39:00 804
原创 各种排序算法的性能比较
#include#include#include#include#include //外部变量定义 int count1=0,bj1=0,yd1=0; int count2=0,bj2=0,yd2=0; int count3=0,bj3=0,yd3=0; int count4=0,bj4=0,yd4=0; int count5=0,bj5=0,yd5=0;
2010-07-18 19:37:00 567
原创 转载:JAVA面试笔试题大全
第一,谈谈final, finally, finalize的区别。最常被问到。 第二,Anonymous Inner Class (匿名内部类) 是否可以extends(继承)其它类,是否可以implements(实现)interface(接口)? 第三,Static Nested Class 和 Inner Class的不同,说得越多越好(面试题有的很笼统)。 第四,&和
2010-07-18 17:24:00 315
原创 转载:java就业面试试题大全
1、一个".java"源文件中是否可以包括多个类(不是内部类)?有什么限制? 可以有多个类,但只能有一个public的类,并且public的类名必须与文件名相一致。2、Java有没有goto? java中的保留字,现在没有在java中使用。 3、说说&和&&的区别。 &和&&都可以用作逻辑与的运算符,表示逻辑与(and),当运算符两边的表达式的结果都为true时,整个运
2010-07-18 10:39:00 665
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人