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

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

Spiral Matrix II

2019-11-11 07:43:58
字體:
來源:轉載
供稿:網友

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;}


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 朝阳市| 金华市| 深泽县| 武胜县| 伊通| 五华县| 资源县| 龙川县| 红桥区| 德钦县| 昌黎县| 栾城县| 青龙| 温宿县| 蕉岭县| 饶河县| 平利县| 六安市| 盐津县| 永安市| 连南| 开封县| 东方市| 荔波县| 嘉义县| 伊金霍洛旗| 呼伦贝尔市| 华坪县| 定结县| 安宁市| 马龙县| 珠海市| 柳河县| 山东| 堆龙德庆县| 肇东市| 察雅县| 澄江县| 万山特区| 当雄县| 惠州市|