[LeetCode] Rotate Image

Source: Internet
Author: User

[LeetCode] Rotate Image
 

Rotate Image

You are given an n x n 2D matrix representing an image.

Rotate the image by 90 degrees (clockwise ).

Follow up:
Cocould you do this in-place?

Solution:

The question requires an in-situ algorithm. Assume that the coordinate axis is shown in the preceding figure. Rotating 90 degrees clockwise is equivalent to first turning the image along x = n/2, and then turning the image along y = x diagonal lines. The Code is as follows:

 

Class Solution {public: void rotate (vector

 
  
> & Matrix) {int len = matrix. size (); // first flip the left and right sides of the matrix for (int I = 0; I

  
   
& V) {int len = v. size (); int I = 0, j = len-1; while (I

   
    
& V, int I, int j) {int temp = v [I]; v [I] = v [j]; v [j] = temp ;}};

   

  

 


 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.