我是靠谱客的博主 帅气月亮,最近开发中收集的这篇文章主要介绍求Zigzag数组,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

面试题:输入N,求一个N*N矩阵,规定矩阵沿45度线递增,形成一个zigzag数组。

#include<iostream>
#include<iomanip>
#include<math.h>
using namespace std;

void CreateZigzag(int *zigzag,int **data,int n)		//data数组是N*N的数组,其中数据需要以Zigzag存入数组,所以zigzag的数组长度为N*N
{
	//int **data,如果需要访问二维数组的数据*((int*)data + n*i + j) 等价data[i][j]
	int step = n + n - 1;
	int i,j;
	int datano = 0;
	int startnum = 0;
	int count = 1;
	bool triangle = true;			//记录是否在上半三角还是下半三角
	while(step > 0)
	{
		if(count == n)
			triangle = false;
		j = startnum;
		for(i = 0; i < count;i++)
		{
			if(triangle)
			{
				zigzag[i * n + j] = *((int*)data + datano);
				j = (j + n - 1) % n;
			}
			else
			{
				zigzag[(n - count + i) * n + j] = *((int*)data + datano);
				j = (j + n - 1) % n;
			}
			datano++;
		}
		if(triangle)
		{
			count++;
			startnum++;
		}
		else
			count--;
		step--;
	}

}

void Output(int *data,int length)
{
	cout<<"The result of zigzag is : "<<endl;
	int n = sqrt(double(length));
	for(int i = 0;i < length;i++)
	{
		if(i % n == 0)
			cout<<endl;
		cout<<setw(6)<<data[i];
	}
	cout<<endl;
}

int main()
{
	int data[][8] = {0,1,2,3,4,5,6,7,8,9,10,
		11,12,13,14,15,16,17,18,19,20,
		21,22,23,24,25,26,27,28,29,30,
		31,32,33,34,35,36,37,38,39,40,
		41,42,43,44,45,46,47,48,49,50,
		51,52,53,54,55,56,57,58,59,60,61,62,63,64};
	int zigzag[64];

	CreateZigzag(zigzag,(int**)data,8);
	Output(zigzag,64);
	return 0;
}
The result of zigzag is :

     0     1     3     6    10    15    21    28
     2     4     7    11    16    22    29    36
     5     8    12    17    23    30    37    43
     9    13    18    24    31    38    44    49
    14    19    25    32    39    45    50    54
    20    26    33    40    46    51    55    58
    27    34    41    47    52    56    59    61
    35    42    48    53    57    60    62    63
请按任意键继续. . .



最后

以上就是帅气月亮为你收集整理的求Zigzag数组的全部内容,希望文章能够帮你解决求Zigzag数组所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(29)

评论列表共有 0 条评论

立即
投稿
返回
顶部