diff options
author | crupest <crupest@outlook.com> | 2020-08-12 23:12:26 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-08-12 23:12:26 +0800 |
commit | 1bba4209221b435db8ed6d21db1cb57d84acc3bc (patch) | |
tree | 36ce55e814a6a1c1d3267e6d109cfd34663c18b6 /works/solutions/cpp | |
parent | 469588ccefbdb3c21b34ed8b271f512c5def171c (diff) | |
download | crupest-1bba4209221b435db8ed6d21db1cb57d84acc3bc.tar.gz crupest-1bba4209221b435db8ed6d21db1cb57d84acc3bc.tar.bz2 crupest-1bba4209221b435db8ed6d21db1cb57d84acc3bc.zip |
import(solutions): Add problem 1470 .
Diffstat (limited to 'works/solutions/cpp')
-rw-r--r-- | works/solutions/cpp/1470.cpp | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/works/solutions/cpp/1470.cpp b/works/solutions/cpp/1470.cpp new file mode 100644 index 0000000..8657dd6 --- /dev/null +++ b/works/solutions/cpp/1470.cpp @@ -0,0 +1,23 @@ +#include <vector>
+
+using std::vector;
+
+class Solution
+{
+public:
+ vector<int> shuffle(vector<int> &nums, int n)
+ {
+ vector<int> result;
+ result.resize(nums.size());
+ auto iter = result.begin();
+ auto iter1 = nums.cbegin();
+ auto iter2 = nums.cbegin() + n;
+ for (int i = 0; i < n; i++)
+ {
+ *iter++ = *iter1++;
+ *iter++ = *iter2++;
+ }
+
+ return std::move(result);
+ }
+};
|