Commit 89105fd
Beta version (#25)
* feat: Implement saving data between program runs
* fix(RBStruct): Remove infinite loop in postorder, correct comparison in restoreStruct
* feat(neo4j): Implement saving many trees
* refactor: Rename some classes and packages
* feat: Implement checking code coverage in CI
* feat: Implement checking code coverage in CI
* fix: Deleting node with one child
* fix: Problems with Serializable connection; Refactor commonObjects package and Tree.putItem method; fix #21 - issue
fix: Problems with Serializable connection; Refactor commonObjects package and Tree.putItem method; fix #21 - issue
* feat(.json files): Implement saving many trees
* refactor: Change argument name in balance method
* refactor: Exceptions throwing - #22.
* refactor: Remove "turns" from interface Balancer.
* Feat: add tests for BINStruct, AVLTree
* feat: Implement a sketch of the application start window
* feat: Implement a name getter for all trees (BIN, RBT)
* feat: Implement saving AVLStruct in SQLite via exposed-ORM (#23).
refactor: ....
* feat: Implement TreeManager interface for interacting with controller
* refactor: Remove warnings after intellij hints
* feat: Redesign interface TreeManager; Implement AVLTreeManager
* refactor: Redesign SQLiteRepositoryExposed
* feat: Implement searching file in neo4j and json repo
* feat: Implement Controller sketch
* feat: Implement some MenuItems
* feat: Implement common methods of Managers classes
* fix: Change some input parameters
* fix: Add functionality to the menu
* fix: Completely redesigned homepage
* feat: Implement basic architecture of trees rendering without positioning; Create an implementation of BIN rendering without padding. (#24)
* feat: Implement FileDialog to select files
* refactor: architecture of database interaction with trees - rewrite logic TreeManagers (#24).
* feat: Implement a user input validator
* Implement saveDialog to save trees
* feat: Implement DeleteDialog for tree removal
* refactor: Structure files (ui)
* refactor: Rewrite architecture responsible for working with databases, interacting with data structures (TreeStructs); implement binary tree coordinates counting (#24).
* feat: Implement methods for DrawableTrees displaying - TreeDrawingUtils (#24).
* refactor: Structure files (ui)
* feat: Implement displaying of RBDrawableTree and AVLDrawableTree (#24).
* fix: Visual representation of the tree
* feat: Implement DrawTree interface (#24).
* fix: Move displayTree method inside DrawableTree (#24).
* feat: Update DrawTree interface: make name and root of a DrawableTree var instead of val; create method - split methods deleteTree and deleteTreeFromDB (#24).
* feat: Implement the integration of trees in the main interface
* fix: Remove generics from DrawTree interface (#24).
* fix: Display of the node data element
* fix: Interacting with neo4j (find)
* fix: Bugs in saving trees in databases.
* feat: Implement saving trees to the database using ui
* fix: Fix tests for trees
---------
Co-authored-by: Georgy S <[email protected]>
Co-authored-by: Aleksandr <[email protected]>1 parent dd91b24 commit 89105fd
File tree
99 files changed
+3027
-527
lines changed- .github/workflows
- lib
- src
- main
- kotlin
- controller
- databaseManage
- databaseSave
- jsonFormat
- neo4j
- sqlite
- treeEntities
- vertexEntities
- dbSave
- jsonFormat
- neo4j
- sqlite
- treelib
- abstractTree
- balanced
- avlTree
- binTree
- commonObjects
- exceptions
- rbTree
- singleObjects/exceptions
- ui
- viewPart/nodes
- drawableAVL
- drawableBIN
- drawableRB
- drawableTree
- resources
- drawable
- font
- test/kotlin
- treelib
- utils
- fuzzers
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
99 files changed
+3027
-527
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
32 | 32 | | |
33 | 33 | | |
34 | 34 | | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
| 3 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
2 | 1 | | |
3 | 2 | | |
4 | 3 | | |
5 | 4 | | |
6 | 5 | | |
7 | 6 | | |
| 7 | + | |
8 | 8 | | |
| 9 | + | |
9 | 10 | | |
10 | 11 | | |
11 | 12 | | |
| |||
16 | 17 | | |
17 | 18 | | |
18 | 19 | | |
| 20 | + | |
19 | 21 | | |
20 | 22 | | |
21 | 23 | | |
| |||
31 | 33 | | |
32 | 34 | | |
33 | 35 | | |
| 36 | + | |
34 | 37 | | |
35 | 38 | | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
36 | 48 | | |
37 | 49 | | |
38 | 50 | | |
| |||
41 | 53 | | |
42 | 54 | | |
43 | 55 | | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
44 | 62 | | |
45 | 63 | | |
46 | 64 | | |
| |||
92 | 110 | | |
93 | 111 | | |
94 | 112 | | |
95 | | - | |
| 113 | + | |
96 | 114 | | |
97 | 115 | | |
98 | 116 | | |
| |||
This file was deleted.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
| 127 | + | |
| 128 | + | |
| 129 | + | |
This file was deleted.
This file was deleted.
This file was deleted.
0 commit comments