📌  相关文章
📜  C ++程序拆分数组并将第一部分添加到末尾

📅  最后修改于: 2021-05-31 21:39:26             🧑  作者: Mango

有一个给定的数组,并将其从指定位置拆分,然后将数组add的第一部分移至末尾。

例子:

Input : arr[] = {12, 10, 5, 6, 52, 36}
            k = 2
Output : arr[] = {5, 6, 52, 36, 12, 10}
Explanation : Split from index 2 and first 
part {12, 10} add to the end .

Input : arr[] = {3, 1, 2}
           k = 1
Output : arr[] = {1, 2, 3}
Explanation : Split from index 1 and first
part add to the end.
// CPP program to split array and move first
// part to end.
#include 
using namespace std;
  
void splitArr(int arr[], int n, int k)
{
    for (int i = 0; i < k; i++) {
  
        // Rotate array by 1.
        int x = arr[0];
        for (int j = 0; j < n - 1; ++j)
            arr[j] = arr[j + 1];
        arr[n - 1] = x;
    }
}
  
// Driver code
int main()
{
    int arr[] = { 12, 10, 5, 6, 52, 36 };
    int n = sizeof(arr) / sizeof(arr[0]);
    int position = 2;
  
    splitArr(arr, 6, position);
  
    for (int i = 0; i < n; ++i)
        printf("%d ", arr[i]);
  
    return 0;
}
输出:
5 6 52 36 12 10

请参阅有关拆分数组的完整文章,并将第一部分添加到末尾以获取更多详细信息!

想要从精选的最佳视频中学习并解决问题,请查看有关从基础到高级C++的C++基础课程以及有关语言和STL的C++ STL课程。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”