C语言实用算法系列之冒泡排序sizeof与strlen的区别

Posted 逆向通信猿

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C语言实用算法系列之冒泡排序sizeof与strlen的区别相关的知识,希望对你有一定的参考价值。

直接看代码

#include <stdio.h>
#include<string.h>
int main()
{
 //char s[10] = { 98,68,55,'-','x','y' }; // sizeof=10 strlen =6
 //char s[10] = "abc%78"; // 从常量区拷贝赋值,sizeof=10 strlen =6
 //char s[] = { 'a','b','c','\0' }; // sizeof=4 strlen=3
 //char s[] = "abcd%3"; // sizeof=7 strlen=6
 printf("sizeof(s)=%d\n"sizeof(s));
 printf("strlen(s)=%d\n"strlen(s));

 int a[10] = { 31,40,21,23,6,9,25,11,3,8 };
 //冒泡排序
 int i = 0;
 while (i < 9)
 {
  int j = 0;
  while (j < 9-i) // 0...8
  {
   if (a[j] > a[j + 1])
   {
    int t = a[j];
    a[j] = a[j + 1];
    a[j + 1] = t;
   }
   ++j;
  }
  ++i;
 }
 i = 0;
 while (i < 10)
  printf("%d ", a[i++]);
}

以上是关于C语言实用算法系列之冒泡排序sizeof与strlen的区别的主要内容,如果未能解决你的问题,请参考以下文章

挖掘算法中的数据结构:O(n^2)排序算法之 选择插入冒泡希尔排序 及 优化

图解算法系列之冒泡排序(优化版)

C语言试题172之实现冒泡排序算法

C语言试题172之实现冒泡排序算法

C语言试题八十八之实现选冒泡排序算法

C语言试题八十八之实现选冒泡排序算法