• 大小: 0.09M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: 汉诺塔  

资源简介

汉诺塔递归

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Collections;
namespace 汉诺塔递归
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        private int i; //移动的次数
        public PictureBox[] Plate = new PictureBox[11];
        const int PlateHeight = 17; //盘片厚度
        private bool isDragging = false;
        private int x1 y1;
        private ArrayList A = new ArrayList();
        private ArrayList B = new ArrayList();
        private ArrayList C = new ArrayList();
        //ArrayList 就是数组列表,它位于System.Collections名称空间下,是集合类型。 
        private int oldx oldy;
        p

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件     311296  2011-06-27 14:34  第3章 汉诺塔游戏\bin\Debug\16.汉诺塔递归.exe

     文件      38400  2011-06-27 14:34  第3章 汉诺塔游戏\bin\Debug\16.汉诺塔递归.pdb

     文件      14328  2011-06-27 14:38  第3章 汉诺塔游戏\bin\Debug\16.汉诺塔递归.vshost.exe

     文件        490  2007-07-21 09:33  第3章 汉诺塔游戏\bin\Debug\16.汉诺塔递归.vshost.exe.manifest

     文件       2334  2007-05-29 02:36  第3章 汉诺塔游戏\bin\Debug\Plate.bmp

     文件       3072  2011-06-26 15:44  第3章 汉诺塔游戏\bin\Debug\Thumbs.db

     文件      11139  2011-06-27 14:34  第3章 汉诺塔游戏\Form1.cs

     文件       6961  2008-08-01 20:00  第3章 汉诺塔游戏\Form1.Designer.cs

     文件       5814  2008-08-01 20:00  第3章 汉诺塔游戏\Form1.resx

     文件     293718  2008-04-13 02:35  第3章 汉诺塔游戏\hannoi_backgrond.bmp

     文件        209  2008-08-01 19:31  第3章 汉诺塔游戏\obj\16.汉诺塔递归.csproj.FileList.txt

     文件        911  2008-08-01 19:31  第3章 汉诺塔游戏\obj\Debug\16.汉诺塔递归.csproj.GenerateResource.Cache

     文件     311296  2011-06-27 14:34  第3章 汉诺塔游戏\obj\Debug\16.汉诺塔递归.exe

     文件      38400  2011-06-27 14:34  第3章 汉诺塔游戏\obj\Debug\16.汉诺塔递归.pdb

    ....SHR     60928  2015-10-19 15:30  第3章 汉诺塔游戏\obj\Debug\lpk.dll

     文件       5120  2011-06-26 15:44  第3章 汉诺塔游戏\obj\Debug\TempPE\Properties.Resources.Designer.cs.dll

     文件        180  2008-08-01 19:30  第3章 汉诺塔游戏\obj\Debug\_6.汉诺塔递归.Form1.resources

     文件     296730  2011-06-27 13:19  第3章 汉诺塔游戏\obj\Debug\_6.汉诺塔递归.Properties.Resources.resources

     文件        843  2011-06-27 14:38  第3章 汉诺塔游戏\obj\Debug\汉诺塔递归.csproj.FileListAbsolute.txt

     文件        916  2011-06-27 14:34  第3章 汉诺塔游戏\obj\Debug\汉诺塔递归.csproj.GenerateResource.Cache

     文件        180  2011-06-27 13:19  第3章 汉诺塔游戏\obj\Debug\汉诺塔递归.Form1.resources

     文件        339  2009-04-12 20:01  第3章 汉诺塔游戏\obj\汉诺塔递归.csproj.FileList.txt

     文件       2334  2007-05-29 02:36  第3章 汉诺塔游戏\Plate.bmp

     文件        474  2008-08-01 19:55  第3章 汉诺塔游戏\Program.cs

     文件       1208  2008-08-01 19:06  第3章 汉诺塔游戏\Properties\AssemblyInfo.cs

     文件       3380  2011-06-26 15:44  第3章 汉诺塔游戏\Properties\Resources.Designer.cs

     文件       6439  2008-08-01 19:31  第3章 汉诺塔游戏\Properties\Resources.resx

     文件       1116  2011-06-26 15:44  第3章 汉诺塔游戏\Properties\Settings.Designer.cs

     文件        249  2008-08-01 19:06  第3章 汉诺塔游戏\Properties\Settings.settings

     文件       5120  2008-08-03 06:45  第3章 汉诺塔游戏\Thumbs.db

............此处省略17个文件信息

评论

共有 条评论