国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

Spiral Matrix II

2019-11-14 09:58:23
字體:
來源:轉載
供稿:網友

Given an integer n, generate a square matrix filled with elements from 1 to n2 in spiral order.

For example,Given n = 3,

You should return the following matrix:

[ [ 1, 2, 3 ], [ 8, 9, 4 ], [ 7, 6, 5 ]]

vector<vector<int> > fun(int n){	vector<vector<int> > result(n, vector<int>(n));	int left = 0;	int right = n-1;	int top = 0;	int bottom = n-1;	int count = 0;	int total = n*n;	while (count < total)	{		for (int i = left; i <= right && count < total; i++)		{			count++;			result[top][i] = count;		}		top++;		for (int i = top; i <= bottom && count < total; i++)		{			count++;			result[i][right] = count;		}		right--;		for (int i = right; i >= left && count < total; i--)		{			count++;			result[bottom][i] = count;		}		bottom--;		for (int i = bottom; i >= top && count < total; i--)		{			count++;			result[i][left] = count;		}		left++;	}	return result;}


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 博客| 汝南县| 洞头县| 甘孜县| 贞丰县| 来宾市| 综艺| 漯河市| 西乡县| 宣恩县| 贺兰县| 安新县| 顺平县| 洛川县| 新干县| 肃宁县| 崇州市| 天门市| 乌兰县| 惠安县| 衡水市| 二连浩特市| 新竹市| 杨浦区| 旌德县| 清苑县| 敦化市| 屯昌县| 东安县| 巫山县| 漯河市| 元江| 邢台市| 盐池县| 从江县| 苏尼特左旗| 任丘市| 永济市| 天镇县| 嘉义县| 沙雅县|