美文网首页
【tip】翻转数组方法

【tip】翻转数组方法

作者: papi_k的小茅屋 | 来源:发表于2024-01-17 10:06 被阅读0次
    void swap(int *a, int *b) {
        int t = *a;
        *a = *b;
        *b = t;
    }
    
    void reverse(int *nums, int start, int end) {
        while (start < end) {
            swap(&nums[start], &nums[end]);
            start++;
            end--;
        }
    }
    

    yo peace!

    相关文章

      网友评论

          本文标题:【tip】翻转数组方法

          本文链接:https://www.haomeiwen.com/subject/timkodtx.html