亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? winhrd.cs

?? 十分完善的華容道程序,有多種布局的求解!
?? CS
?? 第 1 頁 / 共 2 頁
字號:
using System;
using System.Text;
using System.Drawing;
using System.Threading;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using HRD.Core;
using HRD.AVL;
using HRD.CircularList;
using HRD.TreeList;

namespace WinHRD
{
	public class frmMain : System.Windows.Forms.Form, IResultHandler
	{
		private System.Windows.Forms.TextBox txtResult;
		private System.Windows.Forms.Button btnBegin;
		private System.Windows.Forms.Button btnExit;
		private System.Windows.Forms.ImageList imgList;
		private System.Windows.Forms.RadioButton optLayout1;
		private System.Windows.Forms.RadioButton optLayout2;
		private System.Windows.Forms.RadioButton optLayout3;
		private System.Windows.Forms.RadioButton optLayout4;
		private System.Windows.Forms.RadioButton optLayout5;
		private System.Windows.Forms.RadioButton optLayout6;
		private System.Windows.Forms.RadioButton optLayout7;
		private System.Windows.Forms.RadioButton optLayout8;
		private System.Windows.Forms.RadioButton optLayout10;
		private System.Windows.Forms.RadioButton optLayout9;
		private System.ComponentModel.IContainer components;
		private System.Windows.Forms.Label lblInfo;
		private System.Windows.Forms.NumericUpDown nupLayoutsPerLine;
		private System.Windows.Forms.Label label1;
		private System.Windows.Forms.Label label2;

		private ILayoutFactory layoutFactory = new LayoutFactory1();
		private Mediator mediator;
		private System.Windows.Forms.Button btnStop;
		private System.Windows.Forms.StatusBarPanel statusBarPanel1;
		private System.Windows.Forms.StatusBarPanel statusBarPanel2;
		private System.Windows.Forms.StatusBar stbInfo;
		private System.Windows.Forms.StatusBarPanel statusBarPanel3;

		public frmMain()
		{
			InitializeComponent();

			// 初始化自動求解程序
			mediator = new Mediator();
			mediator.avlTree = new AVLTree();
			mediator.treeList = new TreeLinkedList();
			mediator.resultHandler = this;
		}

		/// <summary>
		/// 清理所有正在使用的資源。
		/// </summary>
		protected override void Dispose( bool disposing )
		{
			if( disposing )
			{
				if (components != null) 
				{
					components.Dispose();
				}
			}
			base.Dispose( disposing );
		}

		#region Windows 窗體設計器生成的代碼
		/// <summary>
		/// 設計器支持所需的方法 - 不要使用代碼編輯器修改
		/// 此方法的內容。
		/// </summary>
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmMain));
			this.txtResult = new System.Windows.Forms.TextBox();
			this.optLayout1 = new System.Windows.Forms.RadioButton();
			this.imgList = new System.Windows.Forms.ImageList(this.components);
			this.optLayout2 = new System.Windows.Forms.RadioButton();
			this.optLayout3 = new System.Windows.Forms.RadioButton();
			this.optLayout4 = new System.Windows.Forms.RadioButton();
			this.optLayout5 = new System.Windows.Forms.RadioButton();
			this.optLayout6 = new System.Windows.Forms.RadioButton();
			this.btnBegin = new System.Windows.Forms.Button();
			this.btnExit = new System.Windows.Forms.Button();
			this.optLayout7 = new System.Windows.Forms.RadioButton();
			this.optLayout8 = new System.Windows.Forms.RadioButton();
			this.optLayout10 = new System.Windows.Forms.RadioButton();
			this.optLayout9 = new System.Windows.Forms.RadioButton();
			this.lblInfo = new System.Windows.Forms.Label();
			this.nupLayoutsPerLine = new System.Windows.Forms.NumericUpDown();
			this.label1 = new System.Windows.Forms.Label();
			this.label2 = new System.Windows.Forms.Label();
			this.btnStop = new System.Windows.Forms.Button();
			this.stbInfo = new System.Windows.Forms.StatusBar();
			this.statusBarPanel1 = new System.Windows.Forms.StatusBarPanel();
			this.statusBarPanel2 = new System.Windows.Forms.StatusBarPanel();
			this.statusBarPanel3 = new System.Windows.Forms.StatusBarPanel();
			((System.ComponentModel.ISupportInitialize)(this.nupLayoutsPerLine)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.statusBarPanel1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.statusBarPanel2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.statusBarPanel3)).BeginInit();
			this.SuspendLayout();
			// 
			// txtResult
			// 
			this.txtResult.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
				| System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right)));
			this.txtResult.BackColor = System.Drawing.Color.Ivory;
			this.txtResult.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.txtResult.Location = new System.Drawing.Point(8, 80);
			this.txtResult.Multiline = true;
			this.txtResult.Name = "txtResult";
			this.txtResult.ReadOnly = true;
			this.txtResult.ScrollBars = System.Windows.Forms.ScrollBars.Both;
			this.txtResult.Size = new System.Drawing.Size(776, 424);
			this.txtResult.TabIndex = 0;
			this.txtResult.Text = "";
			this.txtResult.WordWrap = false;
			// 
			// optLayout1
			// 
			this.optLayout1.Checked = true;
			this.optLayout1.ImageIndex = 0;
			this.optLayout1.ImageList = this.imgList;
			this.optLayout1.Location = new System.Drawing.Point(8, 8);
			this.optLayout1.Name = "optLayout1";
			this.optLayout1.Size = new System.Drawing.Size(64, 64);
			this.optLayout1.TabIndex = 1;
			this.optLayout1.TabStop = true;
			this.optLayout1.CheckedChanged += new System.EventHandler(this.optLayout_CheckedChanged);
			// 
			// imgList
			// 
			this.imgList.ImageSize = new System.Drawing.Size(38, 47);
			this.imgList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgList.ImageStream")));
			this.imgList.TransparentColor = System.Drawing.Color.Transparent;
			// 
			// optLayout2
			// 
			this.optLayout2.ImageIndex = 1;
			this.optLayout2.ImageList = this.imgList;
			this.optLayout2.Location = new System.Drawing.Point(80, 8);
			this.optLayout2.Name = "optLayout2";
			this.optLayout2.Size = new System.Drawing.Size(64, 64);
			this.optLayout2.TabIndex = 2;
			this.optLayout2.CheckedChanged += new System.EventHandler(this.optLayout_CheckedChanged);
			// 
			// optLayout3
			// 
			this.optLayout3.ImageIndex = 2;
			this.optLayout3.ImageList = this.imgList;
			this.optLayout3.Location = new System.Drawing.Point(152, 8);
			this.optLayout3.Name = "optLayout3";
			this.optLayout3.Size = new System.Drawing.Size(64, 64);
			this.optLayout3.TabIndex = 4;
			this.optLayout3.CheckedChanged += new System.EventHandler(this.optLayout_CheckedChanged);
			// 
			// optLayout4
			// 
			this.optLayout4.ImageIndex = 3;
			this.optLayout4.ImageList = this.imgList;
			this.optLayout4.Location = new System.Drawing.Point(224, 8);
			this.optLayout4.Name = "optLayout4";
			this.optLayout4.Size = new System.Drawing.Size(64, 64);
			this.optLayout4.TabIndex = 3;
			this.optLayout4.CheckedChanged += new System.EventHandler(this.optLayout_CheckedChanged);
			// 
			// optLayout5
			// 
			this.optLayout5.ImageIndex = 4;
			this.optLayout5.ImageList = this.imgList;
			this.optLayout5.Location = new System.Drawing.Point(296, 8);
			this.optLayout5.Name = "optLayout5";
			this.optLayout5.Size = new System.Drawing.Size(64, 64);
			this.optLayout5.TabIndex = 6;
			this.optLayout5.CheckedChanged += new System.EventHandler(this.optLayout_CheckedChanged);
			// 
			// optLayout6
			// 
			this.optLayout6.ImageIndex = 5;
			this.optLayout6.ImageList = this.imgList;
			this.optLayout6.Location = new System.Drawing.Point(368, 8);
			this.optLayout6.Name = "optLayout6";
			this.optLayout6.Size = new System.Drawing.Size(64, 64);
			this.optLayout6.TabIndex = 5;
			this.optLayout6.CheckedChanged += new System.EventHandler(this.optLayout_CheckedChanged);
			// 
			// btnBegin
			// 
			this.btnBegin.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.btnBegin.Location = new System.Drawing.Point(8, 512);
			this.btnBegin.Name = "btnBegin";
			this.btnBegin.Size = new System.Drawing.Size(80, 32);
			this.btnBegin.TabIndex = 7;
			this.btnBegin.Text = "開始(&B)";
			this.btnBegin.Click += new System.EventHandler(this.btnBegin_Click);
			// 
			// btnExit
			// 
			this.btnExit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.btnExit.Location = new System.Drawing.Point(704, 512);
			this.btnExit.Name = "btnExit";
			this.btnExit.Size = new System.Drawing.Size(80, 32);
			this.btnExit.TabIndex = 9;
			this.btnExit.Text = "退出(&X)";
			this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
			// 
			// optLayout7
			// 
			this.optLayout7.ImageIndex = 6;
			this.optLayout7.ImageList = this.imgList;
			this.optLayout7.Location = new System.Drawing.Point(440, 8);
			this.optLayout7.Name = "optLayout7";
			this.optLayout7.Size = new System.Drawing.Size(64, 64);
			this.optLayout7.TabIndex = 11;
			this.optLayout7.CheckedChanged += new System.EventHandler(this.optLayout_CheckedChanged);
			// 
			// optLayout8
			// 
			this.optLayout8.ImageIndex = 7;
			this.optLayout8.ImageList = this.imgList;
			this.optLayout8.Location = new System.Drawing.Point(512, 8);
			this.optLayout8.Name = "optLayout8";
			this.optLayout8.Size = new System.Drawing.Size(64, 64);
			this.optLayout8.TabIndex = 10;
			this.optLayout8.CheckedChanged += new System.EventHandler(this.optLayout_CheckedChanged);
			// 
			// optLayout10
			// 
			this.optLayout10.ImageIndex = 9;
			this.optLayout10.ImageList = this.imgList;
			this.optLayout10.Location = new System.Drawing.Point(656, 8);
			this.optLayout10.Name = "optLayout10";
			this.optLayout10.Size = new System.Drawing.Size(64, 64);
			this.optLayout10.TabIndex = 13;
			this.optLayout10.CheckedChanged += new System.EventHandler(this.optLayout_CheckedChanged);
			// 
			// optLayout9
			// 
			this.optLayout9.ImageIndex = 8;
			this.optLayout9.ImageList = this.imgList;
			this.optLayout9.Location = new System.Drawing.Point(584, 8);
			this.optLayout9.Name = "optLayout9";
			this.optLayout9.Size = new System.Drawing.Size(64, 64);
			this.optLayout9.TabIndex = 12;
			this.optLayout9.CheckedChanged += new System.EventHandler(this.optLayout_CheckedChanged);
			// 
			// lblInfo
			// 
			this.lblInfo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right)));
			this.lblInfo.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblInfo.Location = new System.Drawing.Point(344, 512);
			this.lblInfo.Name = "lblInfo";
			this.lblInfo.Size = new System.Drawing.Size(352, 32);
			this.lblInfo.TabIndex = 14;
			this.lblInfo.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
			// 
			// nupLayoutsPerLine
			// 
			this.nupLayoutsPerLine.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.nupLayoutsPerLine.Location = new System.Drawing.Point(240, 518);
			this.nupLayoutsPerLine.Maximum = new System.Decimal(new int[] {
																			  10,
																			  0,
																			  0,
																			  0});
			this.nupLayoutsPerLine.Minimum = new System.Decimal(new int[] {
																			  1,
																			  0,
																			  0,
																			  0});
			this.nupLayoutsPerLine.Name = "nupLayoutsPerLine";
			this.nupLayoutsPerLine.Size = new System.Drawing.Size(40, 21);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人激情免费视频| 国产一区二区导航在线播放| 在线国产亚洲欧美| 一区二区国产盗摄色噜噜| 欧美色爱综合网| 亚洲1区2区3区视频| 欧美另类videos死尸| 日本伊人精品一区二区三区观看方式| 日韩一区二区三区在线观看| 国产精品中文字幕一区二区三区| 国产精品私人自拍| 91福利资源站| 老司机精品视频在线| 国产亚洲一区二区三区| 91香蕉视频mp4| 日日夜夜精品视频天天综合网| 日韩欧美国产精品一区| 99久久精品99国产精品| 亚洲chinese男男1069| 日本一区二区动态图| 91精品1区2区| 国产在线精品免费av| 亚洲欧美成aⅴ人在线观看 | 国产在线精品一区二区三区不卡| 国产日韩欧美综合在线| 欧美亚洲一区二区在线| 狠狠狠色丁香婷婷综合激情| 中文字幕一区视频| 欧美一区午夜精品| 91丨porny丨蝌蚪视频| 麻豆精品国产传媒mv男同| 国产精品护士白丝一区av| 欧美一级久久久久久久大片| 成人app在线观看| 免费精品视频最新在线| 亚洲女人的天堂| 337p粉嫩大胆噜噜噜噜噜91av| 91亚洲大成网污www| 久久激情五月婷婷| 亚洲小说欧美激情另类| 日本一区二区三区四区| 日韩一区二区免费高清| 欧洲人成人精品| 成人免费看片app下载| 精品一区二区在线视频| 亚洲国产精品一区二区久久恐怖片 | 亚洲r级在线视频| 亚洲国产精品99久久久久久久久 | 国产日韩欧美精品在线| 91精品免费观看| 91黄色在线观看| 色综合一区二区| 国产suv一区二区三区88区| 全国精品久久少妇| 亚洲免费看黄网站| 国产精品日日摸夜夜摸av| 精品国产乱子伦一区| 欧美夫妻性生活| 在线一区二区三区四区| 99这里只有精品| 成人性视频免费网站| 极品少妇一区二区三区精品视频| 亚洲第一搞黄网站| 亚洲一区影音先锋| 亚洲午夜三级在线| 亚洲综合成人在线| 亚洲黄色av一区| 亚洲三级在线免费观看| 一色屋精品亚洲香蕉网站| 国产精品视频九色porn| 日本一区二区三区四区| 国产欧美日韩亚州综合| 日本一区二区不卡视频| 欧美精彩视频一区二区三区| 国产日韩三级在线| 国产精品久久久久三级| 日韩美女视频一区二区 | 国产无遮挡一区二区三区毛片日本| 欧美大黄免费观看| 精品久久久久久久一区二区蜜臀| 欧美大肚乱孕交hd孕妇| 久久―日本道色综合久久| 久久精品人人做| 国产精品久久久久久户外露出| 国产精品夫妻自拍| 亚洲女同ⅹxx女同tv| 午夜视频久久久久久| 乱中年女人伦av一区二区| 精品写真视频在线观看| 国产盗摄一区二区三区| 99久久精品国产一区二区三区| 在线中文字幕一区二区| 884aa四虎影成人精品一区| 日韩色在线观看| 久久久久久久久久久久电影| 1000精品久久久久久久久| 夜夜爽夜夜爽精品视频| 美女视频一区二区三区| 国产精品一品二品| 色天天综合色天天久久| 91精品婷婷国产综合久久性色| 精品久久久久久久久久久久久久久久久 | 26uuu国产在线精品一区二区| 国产欧美一区二区精品忘忧草| 中文字幕中文字幕一区| 亚洲电影第三页| 精品无人区卡一卡二卡三乱码免费卡| 国产成人h网站| 欧美三级电影在线看| 日韩西西人体444www| 国产精品乱码一区二区三区软件 | 亚洲一区视频在线观看视频| 蜜臂av日日欢夜夜爽一区| 成人黄色软件下载| 欧美性xxxxxxxx| 国产日产欧美一区| 亚洲一区二区在线视频| 国产曰批免费观看久久久| 一本一道波多野结衣一区二区 | 久久午夜色播影院免费高清| 亚洲人成在线播放网站岛国| 另类小说视频一区二区| 99国产精品国产精品久久| 日韩欧美一区二区三区在线| 亚洲欧美激情一区二区| 国产综合久久久久久鬼色| 欧美日韩中字一区| 国产精品午夜电影| 男人的j进女人的j一区| 日本久久一区二区三区| 国产欧美日本一区视频| 日本午夜一区二区| 在线一区二区视频| 中文一区二区完整视频在线观看| 肉丝袜脚交视频一区二区| 91猫先生在线| 国产日韩欧美综合一区| 久久99国产精品久久99 | 久久综合中文字幕| 午夜欧美在线一二页| 91视视频在线直接观看在线看网页在线看| 欧美一区二区三区日韩| 亚洲国产裸拍裸体视频在线观看乱了 | 日韩欧美电影一区| 亚洲成a人片在线不卡一二三区| 波多野洁衣一区| 国产三级久久久| 国产精品一区二区三区四区| 欧美一区二区三区系列电影| 国产综合色在线视频区| 欧美一级欧美一级在线播放| 亚洲靠逼com| 91同城在线观看| 国产精品美女久久久久aⅴ| 国产成人亚洲综合a∨猫咪| 欧美一区二区精品久久911| 丝袜a∨在线一区二区三区不卡| 色综合天天在线| 亚洲视频 欧洲视频| av电影在线不卡| 国产精品久99| 97久久超碰国产精品电影| 国产精品女人毛片| a美女胸又www黄视频久久| 国产精品乱码妇女bbbb| 成人av高清在线| 国产精品久久99| 一本色道久久综合亚洲精品按摩 | 久久蜜桃一区二区| 韩国午夜理伦三级不卡影院| 久久婷婷国产综合精品青草| 国产在线观看一区二区| 亚洲精品在线观看视频| 国产一区二区三区在线观看免费 | 一个色综合av| 欧美人与z0zoxxxx视频| 日本va欧美va精品发布| 欧美大度的电影原声| 国产精品一区二区x88av| 国产精品免费视频观看| 91久久精品国产91性色tv| 午夜伦欧美伦电影理论片| 欧美日韩另类国产亚洲欧美一级| 日韩av网站免费在线| 久久亚洲二区三区| 91玉足脚交白嫩脚丫在线播放| 亚洲精品日韩一| 69堂成人精品免费视频| 国产在线日韩欧美| 亚洲欧洲精品一区二区三区不卡| 91在线porny国产在线看| 亚洲一区二区视频在线| 日韩精品中午字幕| heyzo一本久久综合| 一区二区久久久久久| 欧美v日韩v国产v| 91热门视频在线观看| 日本三级韩国三级欧美三级| 久久精品亚洲精品国产欧美kt∨| 91免费视频网|