国产探花免费观看_亚洲丰满少妇自慰呻吟_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;}


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 奈曼旗| 九龙城区| 兰坪| 万安县| 阿拉善左旗| 永济市| 城固县| 吴桥县| 修武县| 北海市| 屯门区| 韩城市| 茂名市| 乐陵市| 镇雄县| 沂水县| 四川省| 汤阴县| 新余市| 综艺| 元谋县| 永春县| 西和县| 霞浦县| 天门市| 刚察县| 青海省| 临潭县| 当雄县| 安福县| 晋城| 杭锦后旗| 郓城县| 乌兰浩特市| 旌德县| 宕昌县| 武安市| 浦城县| 昭觉县| 河北省| 巴马|