[1] task-1-data-structures #163
16
.gitignore
vendored
16
.gitignore
vendored
|
|
@ -160,3 +160,19 @@ cython_debug/
|
|||
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
||||
#.idea/
|
||||
|
||||
|
||||
# Игнорируем CSV
|
||||
aufgabe-1-data-structures/results/timedata_*.csv
|
||||
|
||||
# разрешаем средние данные
|
||||
!aufgabe-1-data-structures/results/aaverage_*.csv
|
||||
|
||||
# Мусор LaTeX
|
||||
*.aux
|
||||
*.synctex.gz
|
||||
*.toc
|
||||
*.log
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -1,13 +1,6 @@
|
|||
import pandas as pd
|
||||
import re
|
||||
import os
|
||||
import matplotlib.pyplot as plt
|
||||
from matplotlib.ticker import AutoMinorLocator
|
||||
import numpy as np
|
||||
from scipy.interpolate import interp1d, CubicSpline
|
||||
from scipy.optimize import curve_fit
|
||||
from numpy.polynomial import Polynomial
|
||||
|
||||
|
||||
df500 = pd.read_csv("results/aaverage_timedata_500.csv")
|
||||
df1000 = pd.read_csv("results/aaverage_timedata_1000.csv")
|
||||
|
|
|
|||
|
|
@ -1,19 +0,0 @@
|
|||
Структура,Режим,Операция,Время (сек)
|
||||
linklist,shuffled,insert,0.02917951999970676
|
||||
linklist,shuffled,find,0.00256621999997146
|
||||
linklist,shuffled,delete,0.0018302000000403
|
||||
hashtable,shuffled,insert,0.00223439999972464
|
||||
hashtable,shuffled,find,0.00018408000032643998
|
||||
hashtable,shuffled,delete,0.00013254000023147998
|
||||
bintree,shuffled,insert,0.00211651999998134
|
||||
bintree,shuffled,find,0.00014015999986434
|
||||
bintree,shuffled,delete,7.299999997485429e-05
|
||||
linklist,sorted,insert,0.02902601999994654
|
||||
linklist,sorted,find,0.00272362000014248
|
||||
linklist,sorted,delete,0.0017690399998172598
|
||||
hashtable,sorted,insert,0.00219620000007122
|
||||
hashtable,sorted,find,0.00018717999992074
|
||||
hashtable,sorted,delete,0.00011756000003512
|
||||
bintree,sorted,insert,0.12391134000008604
|
||||
bintree,sorted,find,0.0079993400002422
|
||||
bintree,sorted,delete,0.004170019999764881
|
||||
|
Gitea Version: 1.22.0 |
