Compare commits

...

2 Commits

Author SHA1 Message Date
ff0f375cb3 [1] Task 1 (Completed) 2026-04-26 15:58:38 +03:00
6d5dce4306 [1] create branch 2026-04-13 18:40:10 +03:00
11 changed files with 73 additions and 0 deletions

View File

@ -0,0 +1,5 @@
# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/

View File

@ -0,0 +1,6 @@
<component name="InspectionProjectProfileManager">
<settings>
<option name="USE_PROJECT_PROFILE" value="false" />
<version value="1.0" />
</settings>
</component>

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Black">
<option name="sdkName" value="Python 3.13 (задание 1)" />
</component>
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.13 (задание 1)" project-jdk-type="Python SDK" />
</project>

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/задание 1.iml" filepath="$PROJECT_DIR$/.idea/задание 1.iml" />
</modules>
</component>
</project>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$/../.." vcs="Git" />
</component>
</project>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="PYTHON_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/.venv" />
</content>
<orderEntry type="jdk" jdkName="Python 3.13 (задание 1)" jdkType="Python SDK" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

View File

@ -0,0 +1,31 @@
Режим;random;;;;;;;;;;;;;
;;;;;СЛУЧАЙНЫЕ ДАННЫЕ;;;;;;;;;ВСЕ ДАННЫЕ
Среднее по полю Время (сек);Названия столбцов;;;;;;;;;;;;;
Названия строк;delete;find;insert;Общий итог;;;;;;;;;;
BST;0,00010166;0,00017824;0,01604708;0,005442327;;;;;;;;;;
HashTable;0,00167612;0,00458022;0,21285234;0,073036227;;;;;;;;;;
LinkedList;0,0150245;0,03733666;1,82723852;0,626533227;;;;;;;;;;
Общий итог;0,00560076;0,014031707;0,685379313;0,235003927;;;;;;;;;;
;;;;;;;;;;;;;;
;;;;;;;;;;;;;;
;;;;;;;;;;;;;;
;;;;;;;;;;;;;;
Режим;sorted;;;;;;;;;;;;;
;;;;;;;;;;;;;;
Среднее по полю Время (сек);Названия столбцов;;;;;;;;;;;;;
Названия строк;delete;find;insert;Общий итог;;;;;;;;;;
BST;0,04939022;0,06799886;7,16159822;2,4263291;;;;;;;;;;
HashTable;0,00192666;0,00383428;0,20937562;0,071712187;;;;;;;;;;
LinkedList;0,01515886;0,028882;1,82109142;0,62171076;СОРТИРОВАННЫЕ ДАННЫЕ;;;;;;;;;
Общий итог;0,02215858;0,033571713;3,064021753;1,039917349;;;;;;;;;;
;;;;;;;;;;;;;;
;;;;;;;;;;;;;;
;;;;;;;;;;;;;;
Режим;(Все);;;;;;;;;;;;;
;;;;;;;;;;;;;;
Среднее по полю Время (сек);Названия столбцов;;;;;;;;;;;;;
Названия строк;delete;find;insert;Общий итог;;;;;;;;;;
BST;0,02474594;0,03408855;3,58882265;1,215885713;;;;;;;;;;
HashTable;0,00180139;0,00420725;0,21111398;0,072374207;;;;;;;;;;
LinkedList;0,01509168;0,03310933;1,82416497;0,624121993;;;;;;;;;;
Общий итог;0,01387967;0,02380171;1,874700533;0,637460638;;;;;;;;;;
1 Режим random
2 СЛУЧАЙНЫЕ ДАННЫЕ ВСЕ ДАННЫЕ
3 Среднее по полю Время (сек) Названия столбцов
4 Названия строк delete find insert Общий итог
5 BST 0,00010166 0,00017824 0,01604708 0,005442327
6 HashTable 0,00167612 0,00458022 0,21285234 0,073036227
7 LinkedList 0,0150245 0,03733666 1,82723852 0,626533227
8 Общий итог 0,00560076 0,014031707 0,685379313 0,235003927
9
10
11
12
13 Режим sorted
14
15 Среднее по полю Время (сек) Названия столбцов
16 Названия строк delete find insert Общий итог
17 BST 0,04939022 0,06799886 7,16159822 2,4263291
18 HashTable 0,00192666 0,00383428 0,20937562 0,071712187
19 LinkedList 0,01515886 0,028882 1,82109142 0,62171076 СОРТИРОВАННЫЕ ДАННЫЕ
20 Общий итог 0,02215858 0,033571713 3,064021753 1,039917349
21
22
23
24 Режим (Все)
25
26 Среднее по полю Время (сек) Названия столбцов
27 Названия строк delete find insert Общий итог
28 BST 0,02474594 0,03408855 3,58882265 1,215885713
29 HashTable 0,00180139 0,00420725 0,21111398 0,072374207
30 LinkedList 0,01509168 0,03310933 1,82416497 0,624121993
31 Общий итог 0,01387967 0,02380171 1,874700533 0,637460638

Binary file not shown.

Binary file not shown.