| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 494 人关注过本帖
标题:内部排序直接插入排序问题解决不了,那里错了啊
取消只看楼主 加入收藏
cwl168
Rank: 1
等 级:新手上路
帖 子:48
专家分:0
注 册:2012-12-14
结帖率:8.33%
收藏
已结贴  问题点数:15 回复次数:1 
内部排序直接插入排序问题解决不了,那里错了啊
#include<stdio.h>
#include<malloc.h>
#include<stdlib.h>
#define MASIZE 7
#define lENGTH 7
typedef int KeyType;
typedef struct
{
       KeyType key;
      // InfoType otherinfo;
}RedType;
typedef struct
{
      RedType r[MASIZE+1];
      int length;
}SqList;
void IntiList(SqList *L)
{   
    L->length=lENGTH;
    printf("please input numbers:\n");
    for(int i=1;i<=L->length;i++)
    {
         scanf("%d",&L->r[i]);
    }
     
}

void ListTravese(SqList *L)
{
      printf("the result is :\n");
      for( int i=1;i<=L->length;i++)
          printf("%d ",L->r[i]);
}
// 对顺序表L做直接插入排序
void InsertSort(SqList *L)
{
    int i,j;
    for(i=2;i<=L->length;++i)
    {
        if(L->r[i]->key<L->r[i-1]->key) //"<",需将L.r[i]插入有序子表
            L->r[0]=L->r[i];//复制为哨兵
            for(j=i-1;(L->r[0].key<L->r[j]->key);--j)
                L->r[j+1]=L->r[j];//记录后移
            L->r[j+1]=L->r[0];//插入到正确位置
    }

}
int main()
{
    SqList L;
    IntiList(&L);
    ListTravese(&L);
    InsertSort(&L);//直接插入排序
    //printf("the length:%d")
    return 0;
}
搜索更多相关主题的帖子: void numbers include please result 
2013-01-01 21:18
cwl168
Rank: 1
等 级:新手上路
帖 子:48
专家分:0
注 册:2012-12-14
收藏
得分:0 
是的,我在学数据结构,互相学习啊
2013-01-02 19:18
快速回复:内部排序直接插入排序问题解决不了,那里错了啊
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.023550 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved