微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

C语言数据结构河内塔

#include <stdio.h>
#include <stdbool.h>

#define MAX 10

int list[MAX] = {1,8,4,6,0,3,5,2,7,9};

void display(){
   int i;
   printf([);

   // navigate through all items 
   for(i = 0; i < MAX; i++) {
      printf(%d ,list[i]);
   }

   printf(]\n);
}

void bubbleSort() {
   int temp;
   int i,j;
   bool swapped = false;       

   // loop through all numbers 
   for(i = 0; i < MAX-1; i++) { 
      swapped = false;

      // loop through numbers falling ahead 
      for(j = 0; j < MAX-1-i; j++) {
         printf(Items compared: [ %d, %d ] , list[j],list[j+1]);

         // check if next number is lesser than current no
         //   swap the numbers. 
         //  (Bubble up the highest number) 

         if(list[j] > list[j+1]) {
            temp = list[j];
            list[j] = list[j+1];
            list[j+1] = temp;

            swapped = true;
            printf( => swapped [%d, %d]\n,list[j],list[j+1]);
         } else {
            printf( => not swapped\n);
         }
      }

      // if no number was swapped that means 
      //   array is sorted Now, break the loop. 
      if(!swapped) {
         break;
      }

      printf(Iteration %d#: ,(i+1)); 
      display();                     
   }    
}

int main() {
   printf(Input Array: );
   display();
   printf(\n);
   bubbleSort();
   printf(\nOutput Array: );
   display();
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐