当前位置:网站首页>2022.07.03(LC_6111_统计放置房子的方式数)

2022.07.03(LC_6111_统计放置房子的方式数)

2022-07-05 00:08:00 Leeli9316

 方法:模拟

 

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode() {}
 *     ListNode(int val) { this.val = val; }
 *     ListNode(int val, ListNode next) { this.val = val; this.next = next; }
 * }
 */
class Solution {
    public int[][] spiralMatrix(int m, int n, ListNode head) {
        int[][] res = new int[m][n];
        int up = 0, down = m - 1, left = 0, right = n - 1;
        while (true) {
            //从左到右
            for (int col = left; col <= right; col++) {
                if (head != null) {
                    res[up][col] = head.val;
                    head = head.next;
                } else {
                    res[up][col] = -1;
                }
            }
            if (++up > down) break;
            //从上到下
            for (int row = up; row <= down; row++) {
                if (head != null) {
                    res[row][right] = head.val;
                    head = head.next;
                } else {
                    res[row][right] = -1;
                }
            }
            if (--right < left) break;
            //从右到左
            for (int col = right; col >= left; col--) {
                if (head != null) {
                    res[down][col] = head.val;
                    head = head.next;
                } else {
                    res[down][col] = -1;
                }
            }
            if (--down < up) break;
            //从下到上
            for (int row = down; row >= up; row--) {
                if (head != null) {
                    res[row][left] = head.val;
                    head = head.next;
                } else {
                    res[row][left] = -1;
                }
            }
            if (++left > right) break;
        }
        return res;
    }
}

原网站

版权声明
本文为[Leeli9316]所创,转载请带上原文链接,感谢
https://blog.csdn.net/Leeli9316/article/details/125585181