Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

54. Spiral Matrix - LeetCode #24

Closed
Tejas07PSK opened this issue Sep 7, 2018 · 2 comments
Closed

54. Spiral Matrix - LeetCode #24

Tejas07PSK opened this issue Sep 7, 2018 · 2 comments

Comments

@Tejas07PSK
Copy link

Tejas07PSK commented Sep 7, 2018

Time complexity of this program is fine O(n*m), but space complexity can be O(1).
Here is my code,

import java.util.ArrayList;
import java.util.List;

class Solution 
{
    public List<Integer> spiralOrder(int[][] A) 
    {
        
        if ((A == null) || (A.length == 0) || (A[0].length == 0))
        {
            
            return (new ArrayList <Integer> ());
            
        }
        int lr = 0, ur = A.length, lc = 0, uc = A[0].length;
        List <Integer> arr = new ArrayList <Integer> ();
        int count = 0, t = 0, x = 0, y = 0;
        int offset [] = {0, 1};
        while (count < (A.length * A[0].length))
        {

            if (((y + offset[1]) == uc) || ((x + offset[0]) == ur) || ((y + offset[1]) < lc) || ((x + offset[0]) < lr))
            {

                if (((y + offset[1]) == uc))
                {

                    lr += 1;

                }
                else if (((x + offset[0]) == ur))
                {

                    uc -= 1;

                }
                else if (((y + offset[1]) < lc))
                {

                    ur -= 1;

                }
                else if (((x + offset[0]) < lr))
                {

                    lc += 1;

                }
                t = offset[0];
                offset[0] = offset[1];
                offset[1] = -t;

            }
            arr.add(A[x][y]);
            x += offset[0];
            y += offset[1];
            count += 1;

        }
        return (arr);
        
    }
}


Let me know what you think sir, 😉 😄 .
If you don't consider the array to be returned and just print the values as they are, space complexity will be O(1).

@vidhithebest
Copy link

public class solution {

public static void spiralPrint(int matrix[][]){
	int m = matrix.length;
    int n = matrix[0].length;
  int rs = 0;
  int re = m-1;
  int cs = 0;
  int ce = n-1;
  while(cs<=ce && rs <=re){
    for(int i = cs;i<=ce;i++){
      System.out.print(matrix[rs][i] + " ");
    }
    rs++;
    for(int i = rs;i<=re;i++){
      System.out.print(matrix[i][ce] + " ");
    }
    ce--;
    for(int i = ce;i>=cs;i--){
      System.out.print(matrix[re][i] + " ");
    }
    re--;
    for(int i = re;i>=rs;i--){
      System.out.print(matrix[i][cs] + " ");
      
    }
    cs++;
  }

}

}

Check This
It has no extra space used

@Tejas07PSK
Copy link
Author

Cool !! Nice thinking 😉

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants