Advertisement
Guest User

Untitled

a guest
Dec 15th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.55 KB | None | 0 0
  1. # Material courses at ITMO University
  2. Some paradigms course homeworks are left, but JS and Clojure tasks are in the repo.
  3. ## [Android Course](https://github.com/nowiwr01/itmo/tree/master/android/)
  4. Description and screenshots of each task are inside a root folder
  5. * [Contacts](https://github.com/nowiwr01/itmo/tree/master/android/Contacts)
  6. * [Networking](https://github.com/nowiwr01/itmo/tree/master/android/Networking)
  7. * [Navigation](https://github.com/nowiwr01/itmo/tree/master/android/Navigation)
  8. * [CustomView](https://github.com/nowiwr01/itmo/tree/master/android/CustomView)
  9. * [Weather](https://github.com/nowiwr01/itmo/tree/master/android/Weather)
  10.  
  11. ## [Algorithms and Data Structures](https://github.com/nowiwr01/itmo/tree/master/algo/)
  12. There are some contests solutions. Description of each task inside each folder.
  13. * [Sortings, Heap, Binary search and Ternary search](https://github.com/nowiwr01/itmo/tree/master/algo/1%20term/lab1)
  14. * [Stack, Queue, Deque, DSU](https://github.com/nowiwr01/itmo/tree/master/algo/1%20term/lab2)
  15. * [Dynamic Programming](https://github.com/nowiwr01/itmo/tree/master/algo/1%20term/lab3)
  16. * [Segment Tree](https://github.com/nowiwr01/itmo/tree/master/algo/2%20term/laba1)
  17. * [BST, AVL, Cartesian Tree](https://github.com/nowiwr01/itmo/tree/master/algo/2%20term/laba2)
  18. * [Queries on tree: LCA, RMQ, etc](https://github.com/nowiwr01/itmo/tree/master/algo/2%20term/laba3)
  19. * [Connected Components, DFS, MST](https://github.com/nowiwr01/itmo/tree/master/algo/3%20term/lab1)
  20. * [Shortest Path](https://github.com/nowiwr01/itmo/tree/master/algo/3%20term/lab2)
  21.  
  22. ## [Discrete Math](https://github.com/nowiwr01/itmo/tree/master/discrete_math/)
  23. There are some contests solutions. Description of each task inside each folder.
  24. * [Boolean Functions](https://github.com/nowiwr01/itmo/tree/master/discrete_math/1%20term/lab1)
  25. * [Compression](https://github.com/nowiwr01/itmo/tree/master/discrete_math/1%20term/lab2)
  26. * [Combinatorics](https://github.com/nowiwr01/itmo/tree/master/discrete_math/1%20term/lab3)
  27. * [Theory of Probability](https://github.com/nowiwr01/itmo/tree/master/discrete_math/2%20term/lab1)
  28. * [Finite Automatons](https://github.com/nowiwr01/itmo/tree/master/discrete_math/2%20term/lab2)
  29. * [Context-free Grammar](https://github.com/nowiwr01/itmo/tree/master/discrete_math/2%20term/lab3)
  30. * [Hamiltonian Cycles](https://github.com/nowiwr01/itmo/tree/master/discrete_math/3%20term/lab1)
  31.  
  32. ## [Java Course](https://github.com/nowiwr01/itmo/tree/master/prog_intro)
  33. There are some first term homeworks. Description of each task is inside the root folder.
  34. * [Calculating numbers](https://github.com/nowiwr01/itmo/tree/master/prog_intro/HW1)
  35. * [Reversing matrix with spaces](https://github.com/nowiwr01/itmo/tree/master/prog_intro/HW2)
  36. * [Calculating letters in file](https://github.com/nowiwr01/itmo/tree/master/prog_intro/HW3)
  37. * [Words Count Statistic](https://github.com/nowiwr01/itmo/tree/master/prog_intro/HW4)
  38. * [Fast Reverse](https://github.com/nowiwr01/itmo/tree/master/prog_intro/HW5)
  39. * [Words Count Statistic with FastScanner](https://github.com/nowiwr01/itmo/tree/master/prog_intro/HW6)
  40. * [Binary Search with conrtracts](https://github.com/nowiwr01/itmo/tree/master/prog_intro/HW7/search)
  41. * [ArrayQueue (Ordinary + ADT + Module)](https://github.com/nowiwr01/itmo/tree/master/prog_intro/HW8/queue)
  42. * [LinkedQueue](https://github.com/nowiwr01/itmo/tree/master/prog_intro/HW9/queue)
  43. * [Calculating Expressions](https://github.com/nowiwr01/itmo/tree/master/prog_intro/HW10/src/expression)
  44. * [Expression Parser](https://github.com/nowiwr01/itmo/tree/master/prog_intro/HW11/src/expression)
  45.  
  46. ## [Programming Paradigms Course](https://github.com/nowiwr01/itmo/tree/master/paradigms/)
  47. There are some second term homeworks. Description of each task is inside the root folder.
  48. * [Functional Expression Parser (JS)](https://github.com/nowiwr01/itmo/tree/master/paradigms/hw4)
  49. * [Object Expression Parser (JS)](https://github.com/nowiwr01/itmo/tree/master/paradigms/hw5)
  50. * [Exception Handling with Object Expression Parser (JS)](https://github.com/nowiwr01/itmo/tree/master/paradigms/hw6)
  51. * [Linear Algebra Parser (Clojure)](https://github.com/nowiwr01/itmo/tree/master/paradigms/hw7)
  52. * [Functional Expression Parser (Clojure)](https://github.com/nowiwr01/itmo/tree/master/paradigms/hw8)
  53. * [Object Expression Parser (Clojure)](https://github.com/nowiwr01/itmo/tree/master/paradigms/hw9)
  54. * [Associative Arrays (Prolog)](https://github.com/nowiwr01/itmo/tree/master/paradigms/hw11)
  55.  
  56. ## [C++ Course](https://github.com/nowiwr01/itmo/tree/master/c%2B%2B/)
  57. Description of each task is inside the root folder.
  58. * [Autocomplete](https://github.com/nowiwr01/itmo/tree/master/c%2B%2B/autocomplete)
  59. * [Puzzle Game (Using A* algorithm)](https://github.com/nowiwr01/itmo/tree/master/c%2B%2B/puzzle_game)
  60. * [Randomized Queue and Deque](https://github.com/nowiwr01/itmo/tree/master/c%2B%2B/randomized_queue_and_deque)
  61.  
  62. ## [Operation System](https://github.com/nowiwr01/itmo/tree/master/os)
  63. Start working with Linux OS. Description of each task is inside each folder.
  64. * [Base Linux Concole Managing](https://github.com/nowiwr01/itmo/tree/master/os/lab1)
  65. * [Text Stream Processing](https://github.com/nowiwr01/itmo/tree/master/os/lab2)
  66. * [Information About Running Processes](https://github.com/nowiwr01/itmo/tree/master/os/lab3)
  67. * [Process Management](https://github.com/nowiwr01/itmo/tree/master/os/lab4)
  68. * [Work with the file-catalog system](https://github.com/nowiwr01/itmo/tree/master/os/lab5)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement