- 浏览: 222953 次
- 性别:
- 来自: 南京
最新评论
-
ranguisheng:
沙漏的问题貌似可以抽象为一个编程问题,(上7,下0)-(上4, ...
MicroStrategy的面经(from bbs.byr.. -
wss71104307:
米牛牛 写道谢谢!另外关于最后一段的证明、是否可以将【前i个元 ...
Reservoir Sampling -
米牛牛:
谢谢!另外关于最后一段的证明、是否可以将【前i个元素】改为【池 ...
Reservoir Sampling -
javaDevil:
引用self.parent.tb_show(t,a,g); ...
thickbox跨越frameset -
wangyazhen:
这样写似乎不大好,比普通的js要简洁,但是通用性还是差了点,建 ...
Jquery 表单验证
文章列表
Today I am planning to study the code about the Team Robot which is downloaded Form the zone of Robocode. But I found my Eclipse cannot be openned.
Errors: JVM terminated.Exit Code=-1.....
............
I search the problem on google,found solutions: ...
- 2008-10-21 08:45
- 浏览 2235
- 评论(0)
A simple Programing: Couting the lines,words,charcaters in INPUT.
#include <stdio.h>
#define IN 0; // inside a word
#define OUT 1;//outside a word
/*
couting the words,lines,characters in INPUT
*/
main()
{
int nw,nl,nc;//record the numbers of words,lines,characters
int c;//r ...
- 2008-10-18 20:35
- 浏览 1027
- 评论(0)
Reading <<The C programming luange>>,a pragram
#include <stdio.h>
main()
{
int c;
while((c=getchar())!=EOF)
{
putchar(c);
}
}
1. EOF means end of file.
2 .Ctrl+z can end the loop.
3. EOF is an integer, so variable c must be int (char is not ...
- 2008-10-18 16:39
- 浏览 1022
- 评论(0)
这几天看那个ai-tank看的脑袋都大了,ai-code社区完全没人访问的样子,提供的ai-tank3.0免费版,无法用team模式,而且each class limit the biggest size,完全不爽。不过国外的robocode还不错,可以用,但是应该比ai-tank复杂点,我也找到几个team robot,等进一步消息再往下看吧。
昨天发的题目还没做....BS自己,今天继续发,haha
南瑞的
问题描述,24点问题:
输入:a,b,c,d4个整数,在区间【0,13】内,
输出:输出一个 ...
- 2008-10-17 22:17
- 浏览 1258
- 评论(0)
1. 软件工程的设计模式包括瀑布、螺旋等等,非面向对象的采取?模式,面向对象的采取?模式。 2. 640*320个像素的图像,每个图像有8个颜色深度,可以表示多少种颜色?图像按照5:1压缩,需要多大存储空间? 3. a,b,c,d,e顺序入栈,出栈以后存入队列中,出队列的顺序是cdbae, 出栈顺序是什么?,栈深度至少是多少? 4. 两条有序链表合成一条新链表。 5. 二叉树层序遍历填空,使用队列。 6. win32 api 的postmessage和sendmessage的区别。 7. 模式对话框与非模式对话框的区别。
- 2008-10-16 23:20
- 浏览 2002
- 评论(0)
看下段代码输出结果
#include<iostream.h>
#include<string.h>
void main(void)
{
char s1[]="hello";
char s2[]={'h','e','l','l','o'};
cout<<strcmp(s1,s2);
}
结果为:
-1
解释:
1. 字符数组,相当于字符串,后面会自动加'\0'作为结束符
2. strcmp 函数:
比较2个字符串的ASCII码, S1>S2 返回 1
...
- 2008-10-16 12:47
- 浏览 876
- 评论(0)
According to my understand,Detail to see OLCRS chapter 4.
Master Method:
T(n)=aT(n/b)+f(n)
base Master Theorem, the Solution can be divide into 3 cases.Each case compare N^(loga/logb) with f(n).
CASE 1: N^(loga/logb) > f(n) than T(n)=O(N^(loga/logb) );
CASE 2: ...
- 2008-10-14 17:11
- 浏览 1238
- 评论(0)
一道Morgan IT笔试题,关于生产了几个对象的
public class Test
{
static void print(String s1,String s2)
{
if(s1 == s2)
System.out.println("Ooops~");
else
System.out.println("Wows~");
...
- 2008-10-12 16:30
- 浏览 1815
- 评论(0)
根据前面的分析,来看下面几段代码输出:
public class StringTest {
public static void main(String[] args)
{
String ab="ab";
String cd="cd";
String abcd="abcd";
String abcd1="ab"+"cd";//常量的值在编译时就已经确定
if(abcd==abcd1)
System.ou ...
- 2008-10-12 16:20
- 浏览 978
- 评论(0)
-------参考Java面试解惑:究竟创建了几个对象?
问题提出:
一. String abc=new String("abc");究竟创建了几个String对象?(2个 )
把改式子分解为:
1.
- 2008-10-12 16:14
- 浏览 918
- 评论(0)
如果使用与图相关的知识,设计算法来找出一段程序代码中:
(1)定义了但未被使用的变量;
(2)使用了但没有被定义的变量;
(3)其他与变量相关的错误
我的初步想法是:
1.定义一个变量类,
Class Var
{
属性: name,type,isInit(是否初始化),initVal(初始化值),isUsed(是否被使用过);
方法: 一些基本方法;
}
2.程序代码中每个声明的变量(new个Var),作为图的一个结点,用邻接表来实现图。
3.对使用的 ...
我最近 有个小项目 需要一个日历控件 后台可以对每天进行管理,例如添加 某天的待做一些事情啊 之类的 ,当前台浏览的时候 鼠标点击 就会出现提示, 请问java有没有类似的功能控件,最好美观点,功能相似就行