`
sav2005
  • 浏览: 12620 次
  • 性别: Icon_minigender_1
  • 来自: 北京
最近访客 更多访客>>
文章分类
社区版块
存档分类
最新评论

算法 回旋矩阵

阅读更多
http://www.iteye.com/topic/545378

一个画图程序 要求打印出

int i=5;
1  2  3  4  5
16 17 18 19 6
15 24 25 20 7
14 23 22 21 8
13 12 11 10 9

int i=6
1  2  3  4  5   6
20 21 22 23 24  7
19 32 33 34 25  8
18 31 36 35 26  9
17 30 29 28 27 10
16 15 14 13 12 11



From caiwenhn2008
class snakePrint {
	static int length = 7;
	static int value = 1;
	static int[][] snake = new int[length][length];
	static Direction lastDirection = Direction.Right;

	static enum Direction {
		Right, Down, Left, Up;
	}

	public static void initialArray() {
		int row = 0, line = 0;
		for (int c = 0; c < length * length; c++) {
			snake[row][line] = value;
			lastDirection = findDirection(row, line);
			switch (lastDirection) {
				case Right:
					line++;
					break;
				case Down:
					row++;
					break;
				case Left:
					line--;
					break;
				case Up:
					row--;
					break;
				default:
					System.out.println("error");
			}
			value++;
		}
	}

	static Direction findDirection(int row, int line) {
		Direction direction = lastDirection;
		switch (direction) {
			case Right: {
				if ((line == length - 1) || (snake[row][line + 1] != 0))
					direction = direction.Down;
				break;
			}
			case Down: {
				if ((row == length - 1) || (snake[row + 1][line] != 0))
					direction = direction.Left;
				break;
			}
			case Left: {
				if ((line == 0) || (snake[row][line - 1] != 0))
					direction = direction.Up;
				break;
			}
			case Up: {
				if (snake[row - 1][line] != 0)
					direction = direction.Right;
				break;
			}
		}
		return direction;
	}

	public static void main(String[] args) {
		initialArray();

		// display.....
		for (int i = 0; i < length; i++) {
			for (int j = 0; j < length; j++) {
				System.out.print(snake[i][j] + "  ");
			}
			System.out.println();
		}
	}
}


From zhangcong170
public static void main(String args[]){
	  int N=5;
	  int a[][]=new int[N][N];
	  int i=0,j=0;
	  int count=1;
	  for(i=0;i<N;i++){
		  for(j=0;j<N;j++){
			  a[i][j]=0;
		  }
	  }
	  i=0;
	  j=0;
      for(int k=0;k<=N/2;k++){
    	  i=k;
    	  j=k;
		  for(i=k;i<N-k;i++){
			  a[j][i]=count;
			  count++;
		  }
		  i=N-k-1;
		  for(j=k+1;j<N-k;j++){
			  a[j][i]=count;
			  count++;
		  }
		  j=N-k-1;
		  for(i=N-k-2;i>=k;i--){
			  a[j][i]=count;
			  count++;
		  }
		  i=k;
		  for(j=N-k-2;j>=1+k;j--){
			  a[j][i]=count;
			  count++;
		  }
      }
		 
	  for(i=0;i<N;i++){
		  for(j=0;j<N;j++){
		     System.out.print(a[i][j]+" ");
		  }
		  System.out.println();
	  }
}


From yuonch   很好的解法
	public static void print(int count) {
		int is[][] = new int[count][count];
		int i = 0;
		int c = count * count;
		// 横向坐标累加器
		int j = 0;
		// 纵向坐标累加器
		int k = 0;
		// 横纵向控制,1为横向,-1为纵向
		int m = 1;
		// 坐标累加器,1为递增,-1为递减
		int n = 1;
		while (i < c) {
			is[j][k] = ++i;
			if (m > 0) {
				k += n;
				// 触边转向
				if (k < 0 || k >= count || is[j][k] != 0) {
					m *= -1;
					k -= n;
					j += n;
				}
			} else {
				j += n;
				// 触边转向
				if (j < 0 || j >= count || is[j][k] != 0) {
					m *= -1;
					j -= n;
					n *= -1;
					k += n;
				}
			}
		}

		for (int p = 0; p < count; ++p) {
			for (int q = 0; q < count; ++q)
				System.out.print(is[p][q] + "\t");
			System.out.println();
		}
	}


From homoclinic   有意思
public class mathsnake {
	static int L=8;
	static int start=1;
	static int snake[][]=new int[L][L];
	static int x=0,y=0;
	public static void main (String[] arg){
		double a=Math.PI;
		int m=0;
		for(int i=1;i<=L*L;i++){
			snake[x][y]=i;
			x=x+(int)Math.sin(m*a/2);
			y=y+(int)Math.cos(m*a/2);
			if(x==y||x+y==L-1){
				m=m+1;
				if(m>3){m=m-4;x++;y++;}
			}
		}
		 for (int i = 0; i < L; i++) {   
	            for (int j = 0; j < L; j++) {   
	                System.out.print(snake[i][j] + "  ");   
	            }   
	            System.out.println();   
	        }	
	}

}


分享到:
评论

相关推荐

    C#中的回旋矩阵

    ### C#中的回旋矩阵实现 #### 知识点概览 本文将详细介绍如何在C#中实现一种特殊的矩阵——回旋矩阵。回旋矩阵是一种按照特定规则填充数字的二维数组,其特点是数字从中心向外扩展,且按照顺时针方向进行填充。此...

    输出回旋矩阵(c语言)

    回旋矩阵,也被称为螺旋矩阵或旋转矩阵,是一种特殊的矩阵排列方式。在回旋矩阵中,元素会按照顺时针或者逆时针方向螺旋式地填充。这种矩阵在某些算法和数据结构问题中有着广泛的应用,例如在图像处理、数组遍历等...

    基于C的回旋数

    在C语言中,理解并掌握回旋数的概念和实现方式是提升算法分析和编程技能的重要环节。本文将深入探讨回旋数的基本概念、性质以及如何使用C语言进行编程实现。 ### 回旋数基本概念 回旋数是一种数字布局,它将数字...

    nmf的matlab代码-rs-mnmf:基于射线空间的多通道非负矩阵分解

    在最流行的替代方案中,多通道NMF(MNMF)和基于受约束的空间协方差模型的进一步推导已成功地用于分离多麦克风回旋混合物。 这封信提出了通过考虑具有Ray-Space转换信号的混合模型来提出MNMF扩展,其中幅度数据成功...

    lrucacheleetcode-algorithm-questions:Javascript中Leetcode算法问题的答案

    lru缓存leetcode 算法题 Javascript 中 Leetcode 算法问题的答案。 魔法弦 查找排列 按频率排序字符 数组中两个数字的最大异或 对角线遍历 下一个大元素 ...矩阵 ...排序矩阵中的第 ...回旋镖数量 最大连续数 II

    高精度环形谱仪等时性模式的闭轨校正模拟.pdf

    等时性模式是SRing的关键工作模式,它通过设定使得目标离子的回旋周期与动量无关,以提高时间分辨率。在这种模式下,由于β函数较大,任何磁铁场的误差或安装不准确都可能导致显著的闭轨畸变,进而影响线性光学性能...

    经典教材:统计计算(高慧璇)

    在科学与工程领域,数据的分析与处理是至关重要的。...通过对本章的阅读和理解,可以为后续章节关于常用分布函数、随机数的产生和检验、随机模拟方法、矩阵算法以及多元线性与非线性回归分析的学习打下坚实的基础。

    myLibs:我的图书馆

    类固醇| 回旋库 DMT | 数字地形模型库 DXF | 用于dxf文件的库 GA2D | 几何算法库 Helmert2D | 二维Helmert变换 矩阵| 矩阵库修改| ...

    车用涡轮增压器叶轮骨架成型的MATLAB实现方法研究.pdf

    4. MATLAB软件的应用:MATLAB(Matrix Laboratory的缩写)是一种用于算法开发、数据可视化、数据分析及数值计算的高级技术计算语言和交互式环境。在该研究中,MATLAB被用于确定一系列参数,通过矩阵运算、函数绘制和...

    带2个实体的约束:我们在此处在两个实体之间创建了约束

    在《愤怒的小鸟》中,可能有多个不同类型的鸟,它们共享一些基本行为(如飞行),但又各有特色(如爆炸、回旋等)。通过类继承,我们可以创建一个基础的“鸟”类,并让每种特定的鸟类继承这个基础类,然后添加各自的...

Global site tag (gtag.js) - Google Analytics