61-16(*)

//注意(1)最小的数字可能不止一个 如 2 3 4 1 1 1 6
//注意 (2)最小的数字如果在末位怎么办
//注意(3)最小的数字如果在开头怎么办
#include <iostream>
#include <stdlib.h>
using namespace std;
typedef struct node
{
    int num;
    struct node* next;
}NODE,*PNODE;
PNODE creat_(int n)//建立循环双向链表
{
    int num_;
    PNODE head,p,q;
    head=(PNODE)malloc(sizeof(NODE));
    if(head==NULL)
    {
        cout<<"fault";
    }
    head->next=NULL;
    q=head;
    while(n--)
    {
        p=(PNODE)malloc(sizeof(NODE));
        cin>>num_;
        p->num=num_;
        q->next=p;
        q=p;
    }
    q->next=NULL;
   return head;
}
void traverse(PNODE head)
{
    PNODE q=head->next;
    while(q!=NULL)
    {
        cout<<q->num<<' ';
        q=q->next;
    }
}
void find(PNODE head)
{
    int i;
    int count=0;
    PNODE new_;
    PNODE q=head->next;
    i=q->num;
    q=q->next;
    while(q!=NULL)//寻找最小数字i
    {
        if(i>q->num)
        {
            i=q->num;
        }
        q=q->next;
    }
    q=head->next;
    while(q!=NULL)//找出有几个最小的数字
    {
      if(q->num==i)
          count++;
        q=q->next;
    }
    q=head->next;
    if(q->num==i)//如果开头就是最小的数字的话找到最小数字的次数就减1
    {
        count=count-1;
    }
    while(count--)//找最小数字的次数
    {

        while(q->next!=NULL && q->next->num!=i)//如果前面的数都不满足,则最后一个q则是最小数字
        {
            q=q->next;
        }
    if(q->next==NULL)//如果最小数字在末位
    {
        new_=(PNODE)malloc(sizeof(NODE));
        new_=q;
        new_->next=head->next;
        head->next=new_;
        free(q);//释放最小数字内存
    }
    else//如果不在末位
    {
        new_=(PNODE)malloc(sizeof(NODE));
        new_=q->next;
        q->next=q->next->next;
        new_->next=head->next;
        head->next=new_;
    }
    }
}
int main()
{
    PNODE head;
    head=creat_(7);
    find(head);
    traverse(head);
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值