- 浏览: 8294 次
- 性别:
- 来自: 南京
最近访客 更多访客>>
最新评论
-
JamesBound:
I've know that't something but ...
AI - Simple Genetic Algorithm (GA) to solve a card problem -
天才白痴:
嘿嘿,是啊,完全意料之外的
我今天人品大爆发啊,赚了299美元 -
ouspec:
运气很好啊
我今天人品大爆发啊,赚了299美元
文章列表
今天去参加微软的新技术预览(Microsoft New Technology Preview Tour),人品大爆发,再会议的最后的抽奖活动中,一举获得299美元的大奖,总共只抽了两个奖品,还有一个是几十块钱的。我的奖品是MicroSoft Expression Web,可惜我不用Windows啊,所以在淘宝上卖2000块钱好了,今天的很多新技术还是蛮有吸引力的,以后和大家慢慢分享,现在先把我刚拍的奖品照片发上来和大家分享
奖品的正面包装,以及这次活动的一个技术的介绍彩页
奖品的背面包装
还有微软正版的标识
- 2007-06-08 21:26
- 浏览 1193
- 评论(2)
首先,我们来看一个简单的例子,我们用必胜客的pizza来做个例子
首先定义一个interface,抽象出生产比萨的过程。
Pizza.java
public interface Pizza {
public void prepare();
public void bake();
...
- 2007-05-29 16:26
- 浏览 1204
- 评论(0)
You and your friends are setting up a fantasy TopCoder league, where you choose coders to be on your team and score points in the league when any one of your coders wins their room or successfully challenges somebody, etc. To be fair, a system has been developed to choose the order in which picks are ...
- 2007-05-20 12:39
- 浏览 2086
- 评论(0)
Print
Broken Article?
...
- 2007-05-20 00:20
- 浏览 2461
- 评论(1)
#include<stdio.h>
#include<string.h>
#include<malloc.h>
#define N 20 // the length of English words
struct node {
char en[N];
struct node *next;
};
void print(struct node *p);
void sort(struct node *p);
void del(struct node *p);
void swap(struct node *s1, struct nod ...
- 2007-04-25 12:25
- 浏览 1189
- 评论(0)