
Algorithm
ooppig
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
对字符串进行排序的程序(气泡法)
[code]#include #include #include #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...2007-04-25 12:25:44 · 332 阅读 · 0 评论 -
AI - Simple Genetic Algorithm (GA) to solve a card problem
...2007-05-20 00:20:25 · 287 阅读 · 0 评论