diff options
| author | Eugen Wissner <belka@caraus.de> | 2025-12-28 19:31:39 +0100 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2025-12-28 19:42:29 +0100 |
| commit | b7a63ee8956d977ad3364a1d8f509e307232a22a (patch) | |
| tree | 8718da1ac404ff210b2d2feada06c36a06c9a32d /Занимательное программирование/4/4_prim/unit1.lfm | |
| parent | 2a9136b2f3c82193a9a090b27d4e32b18c594c7e (diff) | |
| download | book-exercises-b7a63ee8956d977ad3364a1d8f509e307232a22a.tar.gz | |
Закончил 4-е упражнение 4-й главы
Diffstat (limited to 'Занимательное программирование/4/4_prim/unit1.lfm')
| -rw-r--r-- | Занимательное программирование/4/4_prim/unit1.lfm | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/Занимательное программирование/4/4_prim/unit1.lfm b/Занимательное программирование/4/4_prim/unit1.lfm new file mode 100644 index 0000000..d7f553d --- /dev/null +++ b/Занимательное программирование/4/4_prim/unit1.lfm @@ -0,0 +1,69 @@ +object Form1: TForm1
+ Left = 322
+ Height = 620
+ Top = 32
+ Width = 856
+ Caption = 'Form1'
+ ClientHeight = 620
+ ClientWidth = 856
+ DesignTimePPI = 120
+ LCLVersion = '4.2.0.0'
+ object BackBuffer: TImage
+ Left = 16
+ Height = 400
+ Top = 8
+ Width = 824
+ Visible = False
+ end
+ object Screen: TImage
+ Left = 16
+ Height = 400
+ Top = 8
+ Width = 824
+ end
+ object Button1: TButton
+ Left = 16
+ Height = 56
+ Top = 440
+ Width = 176
+ Caption = 'Загрузка/сохранение'
+ TabOrder = 0
+ OnClick = Button1Click
+ end
+ object Button2: TButton
+ Left = 192
+ Height = 56
+ Top = 440
+ Width = 166
+ Caption = 'Рекурсивный обход'
+ TabOrder = 1
+ OnClick = Button2Click
+ end
+ object Button3: TButton
+ Left = 360
+ Height = 56
+ Top = 440
+ Width = 176
+ Caption = 'Волновая трассировка'
+ TabOrder = 2
+ OnClick = Button3Click
+ end
+ object Button4: TButton
+ Left = 536
+ Height = 56
+ Top = 440
+ Width = 144
+ Caption = 'Алгоритм Прима'
+ TabOrder = 3
+ OnClick = Button4Click
+ end
+ object Button5: TButton
+ Left = 680
+ Height = 56
+ Top = 440
+ Width = 160
+ Caption = 'Алгоритм Краскала'
+ TabOrder = 4
+ OnClick = Button5Click
+ end
+end
|
