LeetCode题解之Flipping an Image
Posted 山里的小勇子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode题解之Flipping an Image相关的知识,希望对你有一定的参考价值。
1、题目描述
2、题目分析
使用C++的迭代器
3、代码
1 vector<vector<int>> flipAndInvertImage(vector<vector<int>>& A) { 2 for( vector<vector<int>>::iterator it = A.begin() ; it != A.end() ; it++ ) 3 { 4 for(auto it_b = (*it).begin() ,it_e = (*it).end()-1 ; it_b <= it_e ; it_b++ ,it_e-- ) 5 { 6 int tmp = *it_b; 7 *it_b = *it_e; 8 *it_e = tmp; 9 10 if( it_b != it_e ) 11 { 12 *it_b = ( *it_b == 1) ? 0 : 1; 13 *it_e = ( *it_e == 1) ? 0 : 1; 14 }else{ 15 *it_b = ( *it_b == 1) ? 0:1 ; 16 } 17 } 18 } 19 return A; 20 21 }
以上是关于LeetCode题解之Flipping an Image的主要内容,如果未能解决你的问题,请参考以下文章
[LeetCode] Flipping an Image 翻转图像
[LeetCode&Python] Problem 832. Flipping an Image
[LeetCode] 832. Flipping an Image_Easy
Leetcode_easy832. Flipping an Image