鏈表排序(冒泡排序)

#include<stdio.h> #include<malloc.h>ui typedef struct StudentType {     int a;     struct StudentType *next;  } *Linklist,Link;    Linklist Build(int n)  {      Linklist p=NULL,s=NULL,ptr=NULL;      i
相關文章
相關標籤/搜索