c – 数组移位到下一个元素

前端之家收集整理的这篇文章主要介绍了c – 数组移位到下一个元素前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何将数组中的元素移动到下一个元素
eg: x[5] = { 5,4,3,2,1 }; // initial values
    x[0] = 6; // new values to be shifted
    x[5] = { 6,5,2 }; // shifted array,it need to be shifted,// not just increment the values.

这就是我到目前为止所做的.这是错的,这就是我在这里需要帮助的原因.提前致谢.

#include <iostream>

using namespace std;

int main() 
{
  int x[5] = { 5,1 };

  int array_size = sizeof(x) / sizeof(x[0]);

  x[0] = 6;

  int m = 1;

  for(int j = 0; j < array_size; j++) {
    x[m+j] = x[j];
    cout << x[j] << endl;
  }

  return 0;
}

解决方法

#include <iostream>

int main () {

  int x[5] = { 5,1 };

  int array_size = sizeof (x) / sizeof (x[0]);

  for (int j = array_size - 1; j > 0; j--) {

      x[j] = x[j - 1];
  }

  x[0] = 6;

  for (int j = 0; j < array_size; j++) {

      std::cout << x[j];
  }

  return 0;
}
原文链接:https://www.f2er.com/c/117454.html

猜你在找的C&C++相关文章