⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cxc9.frm

📁 《数据结构》排序演示系统。实现6种内部排序。包括直接插入排序
💻 FRM
字号:
VERSION 5.00
Begin VB.Form cxc09 
   BackColor       =   &H00C0C0FF&
   BorderStyle     =   0  'None
   Caption         =   "quicksort_sm"
   ClientHeight    =   4005
   ClientLeft      =   0
   ClientTop       =   0
   ClientWidth     =   6795
   LinkTopic       =   "Form1"
   ScaleHeight     =   4583.691
   ScaleMode       =   0  'User
   ScaleWidth      =   6795
   ShowInTaskbar   =   0   'False
   StartUpPosition =   3  '窗口缺省
   Begin VB.CommandButton Command1 
      BackColor       =   &H00FFC0C0&
      Caption         =   "确定"
      Height          =   495
      Left            =   2760
      Style           =   1  'Graphical
      TabIndex        =   3
      Top             =   3120
      Width           =   1095
   End
   Begin VB.Label Label3 
      BackStyle       =   0  'Transparent
      Caption         =   "    由此,完成第一趟排序。之后,进行递归,分别由一趟排序分割成的两个子序列进行快速排序。"
      BeginProperty Font 
         Name            =   "幼圆"
         Size            =   10.5
         Charset         =   134
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H00008000&
      Height          =   855
      Left            =   720
      TabIndex        =   2
      Top             =   2280
      Width           =   5295
   End
   Begin VB.Label Label2 
      BackStyle       =   0  'Transparent
      Caption         =   $"cxc9.frx":0000
      BeginProperty Font 
         Name            =   "幼圆"
         Size            =   10.5
         Charset         =   134
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H00008000&
      Height          =   1215
      Left            =   720
      TabIndex        =   1
      Top             =   1080
      Width           =   5295
   End
   Begin VB.Line Line1 
      BorderColor     =   &H00FF8080&
      BorderStyle     =   6  'Inside Solid
      BorderWidth     =   2
      X1              =   720
      X2              =   6000
      Y1              =   961.373
      Y2              =   961.373
   End
   Begin VB.Label Label1 
      BackStyle       =   0  'Transparent
      Caption         =   "快速排序"
      BeginProperty Font 
         Name            =   "楷体_GB2312"
         Size            =   15
         Charset         =   134
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H00FF0000&
      Height          =   495
      Left            =   720
      TabIndex        =   0
      Top             =   360
      Width           =   5295
   End
End
Attribute VB_Name = "cxc09"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False

'**********************************************
'* desinded dy 丞相  E_mail:cxc-0378@163.com  *
'**********************************************


Private Sub Command1_Click()
cxc08.Show
cxc09.Hide
End Sub

Private Sub Form_Load()
cxc09.Left = (Screen.Width - Width) / 2 '定位
cxc09.Top = (Screen.Height - Height) / 2
End Sub

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -