摘要: 1470. 重新排列数组 时间O(N) 空间O(N) class Solution { public: vector<int> shuffle(vector<int>& nums, int n) { vector<int> res; int i=0; int j=n; for(i=0;i<n;++i 阅读全文
posted @ 2020-06-08 15:21 CofJus 阅读(116) 评论(0) 推荐(0) 编辑