{"id":19245757,"url":"https://github.com/candygoose/algorithms_1_term_ict","last_synced_at":"2025-07-13T00:39:58.394Z","repository":{"id":181319629,"uuid":"659383941","full_name":"CandyGoose/Algorithms_1_term_ICT","owner":"CandyGoose","description":"Алгоритмы и структуры данных 1 семестр Инфокоммуникационные технологии (ИКТ) ИТМО","archived":false,"fork":false,"pushed_at":"2024-06-04T22:10:25.000Z","size":9205,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-02T15:47:26.799Z","etag":null,"topics":["algorithms","datastructures","ict","itmo","python"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/CandyGoose.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-06-27T18:03:41.000Z","updated_at":"2024-06-04T22:10:29.000Z","dependencies_parsed_at":"2024-06-04T23:15:16.988Z","dependency_job_id":null,"html_url":"https://github.com/CandyGoose/Algorithms_1_term_ICT","commit_stats":null,"previous_names":["verakasianenko/algoritms_1_term_ict","verakasianenko/algorithms_1_term_ict","candygoose/algorithms_1_term_ict"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/CandyGoose/Algorithms_1_term_ICT","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CandyGoose%2FAlgorithms_1_term_ICT","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CandyGoose%2FAlgorithms_1_term_ICT/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CandyGoose%2FAlgorithms_1_term_ICT/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CandyGoose%2FAlgorithms_1_term_ICT/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CandyGoose","download_url":"https://codeload.github.com/CandyGoose/Algorithms_1_term_ICT/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CandyGoose%2FAlgorithms_1_term_ICT/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265076118,"owners_count":23707513,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["algorithms","datastructures","ict","itmo","python"],"created_at":"2024-11-09T17:29:17.509Z","updated_at":"2025-07-13T00:39:58.332Z","avatar_url":"https://github.com/CandyGoose.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Алгоритмы и структуры данных 1 семестр\n## Инфокоммуникационные технологии\n\n### Лекции\n\n[Презентации](https://github.com/CandyGoose/Algorithms_1_term_ICT/blob/main/lectures)\n\n### В классе\n\n1 - if, while, for\n\n- [FizzBuzz](https://github.com/CandyGoose/Algorithms_1_term_ICT/blob/main/class/class_1/FizzBuzz_t_1.py)\n\n- [Калькулятор](https://github.com/CandyGoose/Algorithms_1_term_ICT/blob/main/class/class_1/calc_t_0.py)\n\n- [Фибоначчи](https://github.com/CandyGoose/Algorithms_1_term_ICT/blob/main/class/class_1/fib_t_0.py)\n\n2 - Деревья и графы\n\n- [Бинарный поиск](https://github.com/CandyGoose/Algorithms_1_term_ICT/blob/main/class/class_2/binary_t_1.py)\n\n3 - Оценка сложности алгоритмов\n\n- [Подсчет количества шагов на примере транспонирования матрицы](https://github.com/CandyGoose/Algorithms_1_term_ICT/blob/main/class/class_3/3_1.py)\n\n4 - LIFO, FIFO\n\n- [Проверка скобок](https://github.com/CandyGoose/Algorithms_1_term_ICT/blob/main/class/class_4/1.py)\n\n### Лабораторные\n\n1 - Матрицы\n\n- [Транспонирование, умножение и ранг матриц вручную](https://github.com/CandyGoose/Algorithms_1_term_ICT/blob/main/labs/lab_1/matrix_t_2.py)\n\n- [Транспонирование, умножение и ранг матриц NumPy](https://github.com/CandyGoose/Algorithms_1_term_ICT/blob/main/labs/lab_1/matrix_t_3.py)\n\n- [Обратная матрица](https://github.com/CandyGoose/Algorithms_1_term_ICT/blob/main/labs/lab_1/matrix_t_4.py)\n\n- [Timeit для обратной матрицы](https://github.com/CandyGoose/Algorithms_1_term_ICT/blob/main/labs/lab_1/time_t_4.py)\n\n2 - Деревья\n\n- [Акинатор для котиков](https://github.com/CandyGoose/Algorithms_1_term_ICT/blob/main/labs/lab_2)\n\n3 - Сложность алгоритмов, начало сортировок\n\n- [Пузырьковая сортировка](https://github.com/CandyGoose/Algorithms_1_term_ICT/blob/main/labs/lab_3/puzir.py)\n\n4 - Сортировки\n\n- [Быстрая сортировка](https://github.com/CandyGoose/Algorithms_1_term_ICT/blob/main/labs/lab_4/quick.py)\n\n- [Сортировка расческой](https://github.com/CandyGoose/Algorithms_1_term_ICT/blob/main/labs/lab_4/comb.py)\n\n- [Timeit для быстрой сортировки и расчески](https://github.com/CandyGoose/Algorithms_1_term_ICT/blob/main/labs/lab_4/1.2.py)\n\n- [Блочная сортировка](https://github.com/CandyGoose/Algorithms_1_term_ICT/blob/main/labs/lab_4/2.1.py)\n\n- [Пирамидальная сортировка](https://github.com/CandyGoose/Algorithms_1_term_ICT/blob/main/labs/lab_4/2.2.py)\n\n5 - Поиск в глубину и ширину\n\n- [Поиск в глубину](https://github.com/CandyGoose/Algorithms_1_term_ICT/blob/main/labs/lab_5/2.1.py)\n\n- [Поиск в ширину](https://github.com/CandyGoose/Algorithms_1_term_ICT/blob/main/labs/lab_5/2.2.py)\n\n- [Лабиринт](https://github.com/CandyGoose/Algorithms_1_term_ICT/blob/main/labs/lab_5/3.py)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcandygoose%2Falgorithms_1_term_ict","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcandygoose%2Falgorithms_1_term_ict","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcandygoose%2Falgorithms_1_term_ict/lists"}