
D.算法、数据结构
junnyfeng
这个作者很懒,什么都没留下…
展开
-
组合的算法
组合的算法 出处:http://community.youkuaiyun.com/Expert/topic/3143/3143703.xml?temp=.5916101 原作者:cxjddd (空浮无根) 内容简介: 本文讲述求一种求排列组合中的“组合”的算法。本算法通过组织选入组合的元素和未选入组合的元素之间次序,以方便求得下一个组合——更大的或更小原创 2004-07-25 18:02:00 · 1673 阅读 · 0 评论 -
线性表的实现
/*------------------------------------- 程序说明:线性链表头文件 mylist.h 日期: 2004.3.26 作者: junnyfeng----------------------------------------*/#define LIST_INIT_SIZE 20 //初始分配量 #define LISTINCREMENT原创 2004-08-21 17:18:00 · 1600 阅读 · 0 评论 -
桶排序程序
#include #include // constant size must be defined as the array size for bucketSort to workconst int SIZE = 12;void bucketSort( int [] );void distributeElements( int [], int [][ SIZE ], int );void col原创 2005-03-01 23:19:00 · 1193 阅读 · 0 评论