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


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 渝北区| 军事| 拉萨市| 汉寿县| 达尔| 陈巴尔虎旗| 安图县| 同心县| 望城县| 通渭县| 大连市| 沿河| 嘉峪关市| 田阳县| 都昌县| 石门县| 彭阳县| 塔河县| 陵水| 白河县| 海安县| 高阳县| 炎陵县| 宜宾县| 顺平县| 屏东市| 饶阳县| 四子王旗| 封开县| 宜兰县| 安岳县| 随州市| 永福县| 吉安市| 西林县| 拉萨市| 株洲县| 清新县| 永善县| 朝阳市| 绩溪县|