
C/C++
jsjxy2009
一学生
展开
-
常用排序算法--Java实现
package org.rut.util.algorithm; import org.rut.util.algorithm.support.BubbleSort; import org.rut.util.algorithm.support.HeapSort; import org.rut.util.algorithm.support.ImprovedMergeSort;转载 2014-09-14 11:28:19 · 400 阅读 · 0 评论 -
双链表的基本操作
#include #include #include #include using namespace std; typedef struct student{ int data; struct student *next; struct student *pre; }dnode; //建立双链表 dnode *create(){ dnode *head,*p,*s; int转载 2014-09-02 22:14:40 · 440 阅读 · 0 评论 -
单链表的基本操作
#include转载 2014-09-01 22:09:41 · 559 阅读 · 0 评论