├── .DS_Store ├── .github └── workflows │ └── main.yml ├── Books └── book_Algo_fi.pdf ├── Data-Structure-Implementation ├── .DS_Store ├── .idea │ ├── .gitignore │ ├── Data-Structure-Implementation.iml │ ├── modules.xml │ ├── runConfigurations.xml │ └── vcs.xml ├── README.md ├── array │ ├── .DS_Store │ ├── README.md │ └── implementation │ │ ├── .DS_Store │ │ ├── .gradle │ │ ├── 7.1 │ │ │ ├── dependencies-accessors │ │ │ │ ├── dependencies-accessors.lock │ │ │ │ └── gc.properties │ │ │ ├── executionHistory │ │ │ │ ├── executionHistory.bin │ │ │ │ └── executionHistory.lock │ │ │ ├── fileChanges │ │ │ │ └── last-build.bin │ │ │ ├── fileHashes │ │ │ │ ├── fileHashes.bin │ │ │ │ └── fileHashes.lock │ │ │ └── gc.properties │ │ ├── buildOutputCleanup │ │ │ ├── buildOutputCleanup.lock │ │ │ ├── cache.properties │ │ │ └── outputFiles.bin │ │ ├── checksums │ │ │ └── checksums.lock │ │ └── vcs-1 │ │ │ └── gc.properties │ │ ├── .idea │ │ ├── .gitignore │ │ ├── .name │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ ├── jarRepositories.xml │ │ ├── misc.xml │ │ ├── runConfigurations.xml │ │ ├── sonarIssues.xml │ │ ├── sonarlint │ │ │ └── issuestore │ │ │ │ ├── 0 │ │ │ │ ├── 0 │ │ │ │ │ └── 008ac42f93cb2a926654c6857a83feb13f726b95 │ │ │ │ └── 8 │ │ │ │ │ └── 0869d4958f8c41f1f9da7020123bf31174447e49 │ │ │ │ ├── 1 │ │ │ │ ├── 1 │ │ │ │ │ └── 11dff804bfa1de3ca08ed1cbbc221f3e08c366ed │ │ │ │ └── 3 │ │ │ │ │ └── 13b6ea38f2e75fb9bb2572f66272abc97375826d │ │ │ │ ├── 2 │ │ │ │ └── 9 │ │ │ │ │ └── 29298a88b3a41b538a9840b4fe4158ef53c8f37e │ │ │ │ ├── 4 │ │ │ │ ├── 0 │ │ │ │ │ └── 408558319225ddb492ae7a1ba4c8e57f468042c3 │ │ │ │ └── e │ │ │ │ │ └── 4e87f9b5e12b895f0553d4ace20a1760449eebf3 │ │ │ │ ├── 8 │ │ │ │ └── 4 │ │ │ │ │ └── 84ed0818a4dac1af1cc241ceb6f12a4dd478ab95 │ │ │ │ ├── a │ │ │ │ └── a │ │ │ │ │ └── aa0a580a762d642a539c6681183d79cd4faf9bdd │ │ │ │ ├── b │ │ │ │ ├── 5 │ │ │ │ │ └── b57bd61ce7792bc2d934dd69678fa07f07136568 │ │ │ │ └── b │ │ │ │ │ └── bb41aae4f10cbd97c4da7ec76b1a46c59fbd37dd │ │ │ │ ├── f │ │ │ │ └── 0 │ │ │ │ │ └── f07866736216be0ee2aba49e392191aeae700a35 │ │ │ │ └── index.pb │ │ ├── uiDesigner.xml │ │ └── vcs.xml │ │ ├── build.gradle │ │ ├── build │ │ ├── classes │ │ │ └── java │ │ │ │ └── main │ │ │ │ ├── LoopsNested │ │ │ │ ├── ContinueLevel.class │ │ │ │ ├── DoWhileExample.class │ │ │ │ ├── LoopWhile.class │ │ │ │ └── NestedLoop.class │ │ │ │ └── Massiv │ │ │ │ ├── MultiDemtion.class │ │ │ │ ├── MyArray.class │ │ │ │ ├── MyArrayAgain.class │ │ │ │ ├── NoChangeArray.class │ │ │ │ ├── SearchClass.class │ │ │ │ ├── TormizMassiv.class │ │ │ │ └── TypeInferenceInFor.class │ │ └── tmp │ │ │ └── compileJava │ │ │ └── previous-compilation-data.bin │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── settings.gradle │ │ └── src │ │ ├── .DS_Store │ │ └── main │ │ ├── .DS_Store │ │ └── java │ │ ├── .DS_Store │ │ ├── LoopsNested │ │ ├── ContinueLevel.java │ │ ├── DoWhileExample.java │ │ ├── LoopWhile.java │ │ └── NestedLoop.java │ │ └── Massiv │ │ ├── MultiDemtion.java │ │ ├── MyArray.java │ │ ├── MyArrayAgain.java │ │ ├── NoChangeArray.java │ │ ├── SearchClass.java │ │ ├── TormizMassiv.java │ │ └── TypeInferenceInFor.java ├── list │ ├── .DS_Store │ ├── ArrayLists │ │ ├── .gradle │ │ │ ├── 7.1 │ │ │ │ ├── dependencies-accessors │ │ │ │ │ ├── dependencies-accessors.lock │ │ │ │ │ └── gc.properties │ │ │ │ ├── executionHistory │ │ │ │ │ ├── executionHistory.bin │ │ │ │ │ └── executionHistory.lock │ │ │ │ ├── fileChanges │ │ │ │ │ └── last-build.bin │ │ │ │ ├── fileHashes │ │ │ │ │ ├── fileHashes.bin │ │ │ │ │ └── fileHashes.lock │ │ │ │ └── gc.properties │ │ │ ├── buildOutputCleanup │ │ │ │ ├── buildOutputCleanup.lock │ │ │ │ ├── cache.properties │ │ │ │ └── outputFiles.bin │ │ │ ├── checksums │ │ │ │ └── checksums.lock │ │ │ └── vcs-1 │ │ │ │ └── gc.properties │ │ ├── .idea │ │ │ ├── .name │ │ │ ├── compiler.xml │ │ │ ├── gradle.xml │ │ │ ├── jarRepositories.xml │ │ │ ├── misc.xml │ │ │ ├── runConfigurations.xml │ │ │ ├── sonarIssues.xml │ │ │ ├── sonarlint │ │ │ │ └── issuestore │ │ │ │ │ ├── f │ │ │ │ │ └── 0 │ │ │ │ │ │ └── f07866736216be0ee2aba49e392191aeae700a35 │ │ │ │ │ └── index.pb │ │ │ ├── uiDesigner.xml │ │ │ ├── vcs.xml │ │ │ └── workspace.xml │ │ ├── build.gradle │ │ ├── build │ │ │ ├── classes │ │ │ │ └── java │ │ │ │ │ └── main │ │ │ │ │ └── com │ │ │ │ │ └── urunov │ │ │ │ │ └── ds │ │ │ │ │ ├── Doctors.class │ │ │ │ │ ├── IteratorDemo.class │ │ │ │ │ ├── ListDemo.class │ │ │ │ │ ├── Student.class │ │ │ │ │ └── StudentList.class │ │ │ └── tmp │ │ │ │ └── compileJava │ │ │ │ └── previous-compilation-data.bin │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── settings.gradle │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── urunov │ │ │ └── ds │ │ │ ├── Doctors.java │ │ │ ├── IteratorDemo.java │ │ │ ├── ListDemo.java │ │ │ ├── Poliklinka.java │ │ │ ├── Student.java │ │ │ └── StudentList.java │ ├── LinkedList │ │ ├── .DS_Store │ │ ├── .gradle │ │ │ ├── 7.1 │ │ │ │ ├── dependencies-accessors │ │ │ │ │ ├── dependencies-accessors.lock │ │ │ │ │ └── gc.properties │ │ │ │ ├── executionHistory │ │ │ │ │ ├── executionHistory.bin │ │ │ │ │ └── executionHistory.lock │ │ │ │ ├── fileChanges │ │ │ │ │ └── last-build.bin │ │ │ │ ├── fileHashes │ │ │ │ │ ├── fileHashes.bin │ │ │ │ │ └── fileHashes.lock │ │ │ │ └── gc.properties │ │ │ ├── buildOutputCleanup │ │ │ │ ├── buildOutputCleanup.lock │ │ │ │ ├── cache.properties │ │ │ │ └── outputFiles.bin │ │ │ ├── checksums │ │ │ │ └── checksums.lock │ │ │ └── vcs-1 │ │ │ │ └── gc.properties │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── .name │ │ │ ├── LinkedList.iml │ │ │ ├── compiler.xml │ │ │ ├── gradle.xml │ │ │ ├── jarRepositories.xml │ │ │ ├── misc.xml │ │ │ ├── modules.xml │ │ │ ├── runConfigurations.xml │ │ │ ├── sonarIssues.xml │ │ │ ├── sonarlint │ │ │ │ └── issuestore │ │ │ │ │ ├── 1 │ │ │ │ │ └── 5 │ │ │ │ │ │ └── 1591b44c36b83b4de4fcb611816fc5521f630fb1 │ │ │ │ │ ├── 3 │ │ │ │ │ └── 5 │ │ │ │ │ │ └── 352fcf9c243ae8e991ee989fa73cf81297d2a0f1 │ │ │ │ │ ├── 4 │ │ │ │ │ ├── 3 │ │ │ │ │ │ └── 434aaf07cff443a86a3849ddaaa5fc6094031048 │ │ │ │ │ ├── 6 │ │ │ │ │ │ └── 46cf2fefe8400cf56e67451f70e274949be06ca8 │ │ │ │ │ └── d │ │ │ │ │ │ └── 4dacf6bc47cb88513874256bf8451bf80b3fb6f5 │ │ │ │ │ ├── 5 │ │ │ │ │ ├── 4 │ │ │ │ │ │ └── 543daf1363d5a5d0ccadfac08af34dbcc444f382 │ │ │ │ │ └── 7 │ │ │ │ │ │ └── 57b0d333570f363d8cdb2e98335e6ec31db9753f │ │ │ │ │ ├── 6 │ │ │ │ │ └── e │ │ │ │ │ │ └── 6e9ab4f172de0852108b66502796304637bd74be │ │ │ │ │ ├── 7 │ │ │ │ │ └── 0 │ │ │ │ │ │ └── 70c767ccac60869518b489e57477914aa30d2281 │ │ │ │ │ ├── a │ │ │ │ │ └── e │ │ │ │ │ │ └── ae55e3560a56ca2b417da6ebdd44e0f118e1ba3d │ │ │ │ │ ├── e │ │ │ │ │ ├── 4 │ │ │ │ │ │ └── e4c0922e05f1389936b2a8cdd5cbc9ae7f198e81 │ │ │ │ │ └── 5 │ │ │ │ │ │ └── e5f5916f4d4decf0c8a4d67495690e4e8158bda0 │ │ │ │ │ ├── f │ │ │ │ │ └── 0 │ │ │ │ │ │ └── f07866736216be0ee2aba49e392191aeae700a35 │ │ │ │ │ └── index.pb │ │ │ ├── uiDesigner.xml │ │ │ └── vcs.xml │ │ ├── build.gradle │ │ ├── build │ │ │ ├── classes │ │ │ │ └── java │ │ │ │ │ └── main │ │ │ │ │ └── com │ │ │ │ │ └── project │ │ │ │ │ ├── collect │ │ │ │ │ ├── AddLinkedList.class │ │ │ │ │ ├── AddingByIndex.class │ │ │ │ │ ├── ArrayToLinkedList.class │ │ │ │ │ ├── IndexOfLink.class │ │ │ │ │ ├── LinkedListToArray.class │ │ │ │ │ ├── OfferFirstLink.class │ │ │ │ │ ├── PopLinkedList.class │ │ │ │ │ ├── ProcessLinkedList.class │ │ │ │ │ ├── RemoveLinkedList.class │ │ │ │ │ └── SetLinkedList.class │ │ │ │ │ └── differences │ │ │ │ │ ├── LinkedListDemo.class │ │ │ │ │ ├── LinkedListImpProcess$Node.class │ │ │ │ │ └── LinkedListImpProcess.class │ │ │ └── tmp │ │ │ │ └── compileJava │ │ │ │ └── previous-compilation-data.bin │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── settings.gradle │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── project │ │ │ ├── collect │ │ │ ├── AddLinkedList.java │ │ │ ├── AddingByIndex.java │ │ │ ├── ArrayToLinkedList.java │ │ │ ├── IndexOfLink.java │ │ │ ├── LinkedListToArray.java │ │ │ ├── OfferFirstLink.java │ │ │ ├── PopLinkedList.java │ │ │ ├── ProcessLinkedList.java │ │ │ ├── RemoveLinkedList.java │ │ │ └── SetLinkedList.java │ │ │ └── differences │ │ │ ├── LinkedListDemo.java │ │ │ └── LinkedListImpProcess.java │ ├── LinkedListDoubly │ │ ├── .gradle │ │ │ ├── 7.1 │ │ │ │ ├── dependencies-accessors │ │ │ │ │ ├── dependencies-accessors.lock │ │ │ │ │ └── gc.properties │ │ │ │ ├── executionHistory │ │ │ │ │ ├── executionHistory.bin │ │ │ │ │ └── executionHistory.lock │ │ │ │ ├── fileChanges │ │ │ │ │ └── last-build.bin │ │ │ │ ├── fileHashes │ │ │ │ │ ├── fileHashes.bin │ │ │ │ │ └── fileHashes.lock │ │ │ │ └── gc.properties │ │ │ ├── buildOutputCleanup │ │ │ │ ├── buildOutputCleanup.lock │ │ │ │ ├── cache.properties │ │ │ │ └── outputFiles.bin │ │ │ ├── checksums │ │ │ │ └── checksums.lock │ │ │ └── vcs-1 │ │ │ │ └── gc.properties │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── compiler.xml │ │ │ ├── gradle.xml │ │ │ ├── jarRepositories.xml │ │ │ ├── misc.xml │ │ │ ├── runConfigurations.xml │ │ │ ├── sonarIssues.xml │ │ │ ├── sonarlint │ │ │ │ └── issuestore │ │ │ │ │ └── index.pb │ │ │ └── vcs.xml │ │ ├── build.gradle │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── settings.gradle │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── linkedlist │ │ │ └── sample │ │ │ └── LinkedListSingly.java │ ├── LinkedListSingly │ │ ├── .gradle │ │ │ ├── 7.1 │ │ │ │ ├── dependencies-accessors │ │ │ │ │ ├── dependencies-accessors.lock │ │ │ │ │ └── gc.properties │ │ │ │ ├── executionHistory │ │ │ │ │ ├── executionHistory.bin │ │ │ │ │ └── executionHistory.lock │ │ │ │ ├── fileChanges │ │ │ │ │ └── last-build.bin │ │ │ │ ├── fileHashes │ │ │ │ │ ├── fileHashes.bin │ │ │ │ │ └── fileHashes.lock │ │ │ │ └── gc.properties │ │ │ ├── buildOutputCleanup │ │ │ │ ├── buildOutputCleanup.lock │ │ │ │ ├── cache.properties │ │ │ │ └── outputFiles.bin │ │ │ ├── checksums │ │ │ │ └── checksums.lock │ │ │ └── vcs-1 │ │ │ │ └── gc.properties │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── compiler.xml │ │ │ ├── gradle.xml │ │ │ ├── jarRepositories.xml │ │ │ ├── misc.xml │ │ │ ├── runConfigurations.xml │ │ │ ├── sonarIssues.xml │ │ │ ├── sonarlint │ │ │ │ └── issuestore │ │ │ │ │ ├── 2 │ │ │ │ │ └── 8 │ │ │ │ │ │ └── 28067036a4845f6d2f78c7e48593e1935f67ab52 │ │ │ │ │ ├── 5 │ │ │ │ │ └── e │ │ │ │ │ │ └── 5edefa43cd768b54c66b2716710994a7aa8004b8 │ │ │ │ │ ├── c │ │ │ │ │ └── 0 │ │ │ │ │ │ └── c0290f12186a772f3e8de4a0c669584eddb68474 │ │ │ │ │ ├── e │ │ │ │ │ └── 2 │ │ │ │ │ │ └── e289ec4303f35423ecbdd1939d200c28dbcddacc │ │ │ │ │ ├── f │ │ │ │ │ └── 0 │ │ │ │ │ │ └── f07866736216be0ee2aba49e392191aeae700a35 │ │ │ │ │ └── index.pb │ │ │ └── vcs.xml │ │ ├── build.gradle │ │ ├── build │ │ │ ├── classes │ │ │ │ └── java │ │ │ │ │ └── main │ │ │ │ │ └── com │ │ │ │ │ └── collection │ │ │ │ │ └── singlyList │ │ │ │ │ ├── LinkedListSingly$Node.class │ │ │ │ │ ├── LinkedListSingly.class │ │ │ │ │ ├── LinkedMethods.class │ │ │ │ │ ├── MainPoly.class │ │ │ │ │ └── MyIterator.class │ │ │ └── tmp │ │ │ │ └── compileJava │ │ │ │ └── previous-compilation-data.bin │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── settings.gradle │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── collection │ │ │ └── singlyList │ │ │ ├── LinkedListSingly.java │ │ │ ├── LinkedMethods.java │ │ │ ├── MainPoly.java │ │ │ └── MyIterator.java │ └── README.md ├── queue │ ├── .DS_Store │ ├── README.md │ └── implementation │ │ ├── .gradle │ │ ├── 7.1 │ │ │ ├── dependencies-accessors │ │ │ │ ├── dependencies-accessors.lock │ │ │ │ └── gc.properties │ │ │ ├── executionHistory │ │ │ │ ├── executionHistory.bin │ │ │ │ └── executionHistory.lock │ │ │ ├── fileChanges │ │ │ │ └── last-build.bin │ │ │ ├── fileHashes │ │ │ │ ├── fileHashes.bin │ │ │ │ └── fileHashes.lock │ │ │ └── gc.properties │ │ ├── buildOutputCleanup │ │ │ ├── buildOutputCleanup.lock │ │ │ ├── cache.properties │ │ │ └── outputFiles.bin │ │ ├── checksums │ │ │ └── checksums.lock │ │ └── vcs-1 │ │ │ └── gc.properties │ │ ├── .idea │ │ ├── .gitignore │ │ ├── .name │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ ├── jarRepositories.xml │ │ ├── misc.xml │ │ ├── runConfigurations.xml │ │ ├── sonarIssues.xml │ │ ├── sonarlint │ │ │ └── issuestore │ │ │ │ ├── 1 │ │ │ │ └── b │ │ │ │ │ └── 1b6f13ebca52ebf2cbd5be1161d2791a1070f145 │ │ │ │ ├── 7 │ │ │ │ └── 6 │ │ │ │ │ └── 7601c20922c07683db39264ec6fd1f94abb64ef9 │ │ │ │ ├── 8 │ │ │ │ └── 4 │ │ │ │ │ └── 84df102e9f1619f510820d4b5334ebe3e4934be4 │ │ │ │ ├── a │ │ │ │ └── e │ │ │ │ │ └── aeaa6bc60632ba9d60c6e7f9369faddd0b841a35 │ │ │ │ ├── c │ │ │ │ └── 5 │ │ │ │ │ └── c5ea14ee8b5ec8f36afdc7b15fe6a30d20726ef1 │ │ │ │ ├── d │ │ │ │ └── e │ │ │ │ │ └── de65012758778af9004a506abbe4a6771e484e4d │ │ │ │ ├── f │ │ │ │ └── 0 │ │ │ │ │ └── f07866736216be0ee2aba49e392191aeae700a35 │ │ │ │ └── index.pb │ │ ├── uiDesigner.xml │ │ └── vcs.xml │ │ ├── build.gradle │ │ ├── build │ │ ├── classes │ │ │ └── java │ │ │ │ └── main │ │ │ │ └── com │ │ │ │ ├── existing │ │ │ │ └── command │ │ │ │ │ ├── IteratingExample.class │ │ │ │ │ ├── JustQueue.class │ │ │ │ │ ├── PriorityQueueImplementation.class │ │ │ │ │ └── QueueLinkedExample.class │ │ │ │ └── implementation │ │ │ │ └── fromMe │ │ │ │ └── QueueImpl.class │ │ └── tmp │ │ │ └── compileJava │ │ │ └── previous-compilation-data.bin │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── settings.gradle │ │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ ├── existing │ │ └── command │ │ │ ├── IteratingExample.java │ │ │ ├── JustQueue.java │ │ │ ├── PriorityQueueImplementation.java │ │ │ └── QueueLinkedExample.java │ │ └── implementation │ │ └── fromMe │ │ ├── QueueImpl.java │ │ └── QueueInterface.java ├── set │ ├── .gradle │ │ ├── 7.1 │ │ │ ├── dependencies-accessors │ │ │ │ ├── dependencies-accessors.lock │ │ │ │ └── gc.properties │ │ │ ├── executionHistory │ │ │ │ ├── executionHistory.bin │ │ │ │ └── executionHistory.lock │ │ │ ├── fileChanges │ │ │ │ └── last-build.bin │ │ │ ├── fileHashes │ │ │ │ ├── fileHashes.bin │ │ │ │ └── fileHashes.lock │ │ │ └── gc.properties │ │ ├── buildOutputCleanup │ │ │ ├── buildOutputCleanup.lock │ │ │ ├── cache.properties │ │ │ └── outputFiles.bin │ │ ├── checksums │ │ │ └── checksums.lock │ │ └── vcs-1 │ │ │ └── gc.properties │ ├── .idea │ │ ├── .gitignore │ │ ├── .name │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ ├── jarRepositories.xml │ │ ├── misc.xml │ │ ├── runConfigurations.xml │ │ ├── sonarIssues.xml │ │ ├── sonarlint │ │ │ └── issuestore │ │ │ │ ├── 7 │ │ │ │ └── 6 │ │ │ │ │ └── 76c06f73d639a669967ca8d29a3d111f35a724c0 │ │ │ │ ├── f │ │ │ │ └── 0 │ │ │ │ │ └── f07866736216be0ee2aba49e392191aeae700a35 │ │ │ │ └── index.pb │ │ └── vcs.xml │ ├── build.gradle │ ├── build │ │ ├── classes │ │ │ └── java │ │ │ │ └── main │ │ │ │ └── com │ │ │ │ └── project │ │ │ │ └── setJava │ │ │ │ └── SetDemo.class │ │ └── tmp │ │ │ └── compileJava │ │ │ └── previous-compilation-data.bin │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── project │ │ └── setJava │ │ └── SetDemo.java └── stack │ ├── .DS_Store │ ├── .idea │ ├── misc.xml │ ├── runConfigurations.xml │ ├── vcs.xml │ └── workspace.xml │ ├── README.md │ └── implementation │ ├── .DS_Store │ ├── .gradle │ ├── 7.1 │ │ ├── dependencies-accessors │ │ │ ├── dependencies-accessors.lock │ │ │ └── gc.properties │ │ ├── executionHistory │ │ │ ├── executionHistory.bin │ │ │ └── executionHistory.lock │ │ ├── fileChanges │ │ │ └── last-build.bin │ │ ├── fileHashes │ │ │ ├── fileHashes.bin │ │ │ └── fileHashes.lock │ │ └── gc.properties │ ├── buildOutputCleanup │ │ ├── buildOutputCleanup.lock │ │ ├── cache.properties │ │ └── outputFiles.bin │ ├── checksums │ │ └── checksums.lock │ └── vcs-1 │ │ └── gc.properties │ ├── .idea │ ├── .gitignore │ ├── .name │ ├── compiler.xml │ ├── gradle.xml │ ├── jarRepositories.xml │ ├── misc.xml │ ├── runConfigurations.xml │ ├── sonarIssues.xml │ ├── sonarlint │ │ └── issuestore │ │ │ ├── 6 │ │ │ └── 9 │ │ │ │ └── 696c20595c38bd4959c8f6dd51e77c312c8c3027 │ │ │ ├── b │ │ │ └── 4 │ │ │ │ └── b4d388a408fff2c3f0222cdfac405d4d44df38d2 │ │ │ ├── f │ │ │ └── 0 │ │ │ │ └── f07866736216be0ee2aba49e392191aeae700a35 │ │ │ └── index.pb │ └── vcs.xml │ ├── build.gradle │ ├── build │ ├── classes │ │ └── java │ │ │ └── main │ │ │ └── com │ │ │ └── stackimp │ │ │ └── pro │ │ │ ├── MainPoly.class │ │ │ └── Stack.class │ └── tmp │ │ └── compileJava │ │ └── previous-compilation-data.bin │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle │ └── src │ └── main │ └── java │ └── com │ └── stackimp │ └── pro │ ├── MainPoly.java │ └── Stack.java ├── DataStructure ├── .DS_Store ├── BST_JavaScript │ └── BST_JS.js ├── Queue │ ├── .DS_Store │ └── Queue_Array │ │ ├── .idea │ │ ├── .gitignore │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── vcs.xml │ │ ├── Queue_Array.iml │ │ ├── out │ │ └── production │ │ │ └── Queue_Array │ │ │ └── Queue_Array.class │ │ └── src │ │ └── Queue_Array.java ├── Search_in_BST │ ├── .idea │ │ ├── .gitignore │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── vcs.xml │ ├── Search_in_BST.iml │ ├── out │ │ └── production │ │ │ └── Search_in_BST │ │ │ ├── SearchInBST$Node.class │ │ │ └── SearchInBST.class │ └── src │ │ └── SearchInBST.java ├── Stack_Array │ ├── .idea │ │ ├── .gitignore │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── vcs.xml │ ├── Stack_Array.iml │ ├── out │ │ └── production │ │ │ └── Stack_Array │ │ │ └── Stack_Array.class │ └── src │ │ └── Stack_Array.java ├── Stack_LinkList │ ├── .idea │ │ ├── .gitignore │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── vcs.xml │ ├── Stack_LinkList.iml │ ├── out │ │ └── production │ │ │ └── Stack_LinkList │ │ │ ├── Stack_LinkList$Node.class │ │ │ ├── Stack_LinkList.class │ │ │ └── Stack_main.class │ └── src │ │ ├── Stack_LinkList.java │ │ └── Stack_main.java └── Tree_BST │ ├── .idea │ ├── .gitignore │ ├── .name │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml │ ├── Tree_Implementation.iml │ ├── out │ └── production │ │ └── Tree_Implementation │ │ └── BTS_Number.class │ └── src │ └── BTS_Number.java ├── GenericType ├── .DS_Store └── TypeParameter │ ├── .gradle │ ├── 7.1 │ │ ├── dependencies-accessors │ │ │ ├── dependencies-accessors.lock │ │ │ └── gc.properties │ │ ├── executionHistory │ │ │ ├── executionHistory.bin │ │ │ └── executionHistory.lock │ │ ├── fileChanges │ │ │ └── last-build.bin │ │ ├── fileHashes │ │ │ ├── fileHashes.bin │ │ │ └── fileHashes.lock │ │ └── gc.properties │ ├── buildOutputCleanup │ │ ├── buildOutputCleanup.lock │ │ ├── cache.properties │ │ └── outputFiles.bin │ ├── checksums │ │ └── checksums.lock │ └── vcs-1 │ │ └── gc.properties │ ├── .idea │ ├── .gitignore │ ├── compiler.xml │ ├── gradle.xml │ ├── jarRepositories.xml │ ├── misc.xml │ ├── runConfigurations.xml │ ├── sonarIssues.xml │ ├── sonarlint │ │ └── issuestore │ │ │ ├── 3 │ │ │ └── f │ │ │ │ └── 3f0441439b72c92bf39d909ebf3c2d6a80560cbd │ │ │ ├── 4 │ │ │ └── 7 │ │ │ │ └── 47f64cc0dd6a1a80685baafcafbc2c66c4f2db17 │ │ │ ├── 6 │ │ │ └── 5 │ │ │ │ └── 6505b229359334053c4a1aa6d81d674e214b0d11 │ │ │ ├── 8 │ │ │ └── a │ │ │ │ └── 8a81230380802d22d123f4c1612b76fafa19a44b │ │ │ ├── c │ │ │ └── 9 │ │ │ │ └── c9af3604df605340da7808a7f09b7167db770fc0 │ │ │ ├── e │ │ │ └── c │ │ │ │ └── eca1ef6c4b70a3f4a96085a8a5f96583b160b4ab │ │ │ ├── f │ │ │ └── 0 │ │ │ │ └── f07866736216be0ee2aba49e392191aeae700a35 │ │ │ └── index.pb │ ├── uiDesigner.xml │ └── vcs.xml │ ├── build.gradle │ ├── build │ ├── classes │ │ └── java │ │ │ └── main │ │ │ └── com │ │ │ └── generic │ │ │ ├── implementation │ │ │ ├── Animal.class │ │ │ ├── Cat.class │ │ │ ├── GenericsExample.class │ │ │ └── Printers.class │ │ │ └── project │ │ │ ├── DataTypes.class │ │ │ └── GenericMethodTesty.class │ └── tmp │ │ └── compileJava │ │ └── previous-compilation-data.bin │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle │ └── src │ └── main │ └── java │ └── com │ └── generic │ ├── implementation │ ├── Animal.java │ ├── Cat.java │ ├── GenericsExample.java │ └── Printers.java │ └── project │ ├── DataTypes.java │ └── GenericMethodTesty.java ├── Lambda └── LambdaSimple │ ├── .gradle │ ├── 7.1 │ │ ├── dependencies-accessors │ │ │ ├── dependencies-accessors.lock │ │ │ └── gc.properties │ │ ├── executionHistory │ │ │ ├── executionHistory.bin │ │ │ └── executionHistory.lock │ │ ├── fileChanges │ │ │ └── last-build.bin │ │ ├── fileHashes │ │ │ ├── fileHashes.bin │ │ │ └── fileHashes.lock │ │ └── gc.properties │ ├── buildOutputCleanup │ │ ├── buildOutputCleanup.lock │ │ ├── cache.properties │ │ └── outputFiles.bin │ ├── checksums │ │ └── checksums.lock │ └── vcs-1 │ │ └── gc.properties │ ├── .idea │ ├── compiler.xml │ ├── gradle.xml │ ├── jarRepositories.xml │ ├── misc.xml │ ├── runConfigurations.xml │ ├── sonarIssues.xml │ ├── sonarlint │ │ └── issuestore │ │ │ ├── 1 │ │ │ └── 1 │ │ │ │ └── 11818af2cf98d0a3c4abfbc9c0142ec9519fd4c8 │ │ │ ├── 7 │ │ │ └── 2 │ │ │ │ └── 7229711f707c1d3dff3852ae561d98bbc287f3d9 │ │ │ ├── a │ │ │ └── c │ │ │ │ └── ac04b73c5368fa537000eb487a386d555bc74262 │ │ │ ├── b │ │ │ └── b │ │ │ │ └── bb82160d1a34f3b43b8cb87409239608d762fffb │ │ │ ├── c │ │ │ └── 0 │ │ │ │ └── c0191d4186398e91d236febc170543e8114835a5 │ │ │ ├── d │ │ │ └── 5 │ │ │ │ └── d52f134ccef380e1c2cb5ce4c94033a64ad3ec78 │ │ │ ├── f │ │ │ └── 0 │ │ │ │ └── f07866736216be0ee2aba49e392191aeae700a35 │ │ │ └── index.pb │ ├── uiDesigner.xml │ ├── vcs.xml │ └── workspace.xml │ ├── build.gradle │ ├── build │ ├── classes │ │ └── java │ │ │ └── main │ │ │ └── com │ │ │ └── lambda │ │ │ ├── moreover │ │ │ ├── LambdaInterface.class │ │ │ └── MainPoly.class │ │ │ └── sample │ │ │ ├── Cat.class │ │ │ ├── Lambdas.class │ │ │ ├── MainPolly.class │ │ │ └── Printable.class │ └── tmp │ │ └── compileJava │ │ └── previous-compilation-data.bin │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle │ └── src │ └── main │ └── java │ └── com │ └── lambda │ ├── moreover │ ├── LambdaInterface.java │ └── MainPoly.java │ └── sample │ ├── Cat.java │ ├── Lambdas.java │ ├── MainPolly.java │ └── Printable.java ├── Leetcode-Solutions ├── README.md └── RoadMap.jpg /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/.DS_Store -------------------------------------------------------------------------------- /Books/book_Algo_fi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Books/book_Algo_fi.pdf -------------------------------------------------------------------------------- /Data-Structure-Implementation/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/.DS_Store -------------------------------------------------------------------------------- /Data-Structure-Implementation/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Datasource local storage ignored files 5 | /dataSources/ 6 | /dataSources.local.xml 7 | # Editor-based HTTP Client requests 8 | /httpRequests/ 9 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/.idea/Data-Structure-Implementation.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/README.md: -------------------------------------------------------------------------------- 1 | ## Data-Strucute: Collection Framework 2 | 3 | 1. Array 4 | 2. List 5 | 3. LinkedList 6 | 4. Stack 7 | 5. Queue 8 | 6. Hashing 9 | 10 | 11 | 12 | Reference 13 | 1. [Collection](https://www.geeksforgeeks.org/data-structures/) 14 | 2. [Data structure](https://www.javatpoint.com/data-structure-stack) 15 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/array/.DS_Store -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/array/implementation/.DS_Store -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/.gradle/7.1/dependencies-accessors/dependencies-accessors.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/array/implementation/.gradle/7.1/dependencies-accessors/dependencies-accessors.lock -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/.gradle/7.1/dependencies-accessors/gc.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/array/implementation/.gradle/7.1/dependencies-accessors/gc.properties -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/.gradle/7.1/executionHistory/executionHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/array/implementation/.gradle/7.1/executionHistory/executionHistory.bin -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/.gradle/7.1/executionHistory/executionHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/array/implementation/.gradle/7.1/executionHistory/executionHistory.lock -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/.gradle/7.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/.gradle/7.1/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/array/implementation/.gradle/7.1/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/.gradle/7.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/array/implementation/.gradle/7.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/.gradle/7.1/gc.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/array/implementation/.gradle/7.1/gc.properties -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/.gradle/buildOutputCleanup/buildOutputCleanup.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/array/implementation/.gradle/buildOutputCleanup/buildOutputCleanup.lock -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Sat Feb 05 21:21:53 KST 2022 2 | gradle.version=7.1 3 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/.gradle/buildOutputCleanup/outputFiles.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/array/implementation/.gradle/buildOutputCleanup/outputFiles.bin -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/.gradle/checksums/checksums.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/array/implementation/.gradle/checksums/checksums.lock -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/array/implementation/.gradle/vcs-1/gc.properties -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/.idea/.name: -------------------------------------------------------------------------------- 1 | ArrayImplementation -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 16 | 17 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 14 | 15 | 19 | 20 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 10 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/.idea/sonarlint/issuestore/0/0/008ac42f93cb2a926654c6857a83feb13f726b95: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/array/implementation/.idea/sonarlint/issuestore/0/0/008ac42f93cb2a926654c6857a83feb13f726b95 -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/.idea/sonarlint/issuestore/0/8/0869d4958f8c41f1f9da7020123bf31174447e49: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/array/implementation/.idea/sonarlint/issuestore/0/8/0869d4958f8c41f1f9da7020123bf31174447e49 -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/.idea/sonarlint/issuestore/1/1/11dff804bfa1de3ca08ed1cbbc221f3e08c366ed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/array/implementation/.idea/sonarlint/issuestore/1/1/11dff804bfa1de3ca08ed1cbbc221f3e08c366ed -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/.idea/sonarlint/issuestore/1/3/13b6ea38f2e75fb9bb2572f66272abc97375826d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/array/implementation/.idea/sonarlint/issuestore/1/3/13b6ea38f2e75fb9bb2572f66272abc97375826d -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/.idea/sonarlint/issuestore/2/9/29298a88b3a41b538a9840b4fe4158ef53c8f37e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/array/implementation/.idea/sonarlint/issuestore/2/9/29298a88b3a41b538a9840b4fe4158ef53c8f37e -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/.idea/sonarlint/issuestore/4/0/408558319225ddb492ae7a1ba4c8e57f468042c3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/array/implementation/.idea/sonarlint/issuestore/4/0/408558319225ddb492ae7a1ba4c8e57f468042c3 -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/.idea/sonarlint/issuestore/4/e/4e87f9b5e12b895f0553d4ace20a1760449eebf3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/array/implementation/.idea/sonarlint/issuestore/4/e/4e87f9b5e12b895f0553d4ace20a1760449eebf3 -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/.idea/sonarlint/issuestore/8/4/84ed0818a4dac1af1cc241ceb6f12a4dd478ab95: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/array/implementation/.idea/sonarlint/issuestore/8/4/84ed0818a4dac1af1cc241ceb6f12a4dd478ab95 -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/.idea/sonarlint/issuestore/a/a/aa0a580a762d642a539c6681183d79cd4faf9bdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/array/implementation/.idea/sonarlint/issuestore/a/a/aa0a580a762d642a539c6681183d79cd4faf9bdd -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/.idea/sonarlint/issuestore/b/5/b57bd61ce7792bc2d934dd69678fa07f07136568: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/array/implementation/.idea/sonarlint/issuestore/b/5/b57bd61ce7792bc2d934dd69678fa07f07136568 -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/.idea/sonarlint/issuestore/b/b/bb41aae4f10cbd97c4da7ec76b1a46c59fbd37dd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/array/implementation/.idea/sonarlint/issuestore/b/b/bb41aae4f10cbd97c4da7ec76b1a46c59fbd37dd -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/.idea/sonarlint/issuestore/f/0/f07866736216be0ee2aba49e392191aeae700a35: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/array/implementation/.idea/sonarlint/issuestore/f/0/f07866736216be0ee2aba49e392191aeae700a35 -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/build.gradle: -------------------------------------------------------------------------------- 1 | plugins { 2 | id 'java' 3 | } 4 | 5 | group 'org.example' 6 | version '1.0-SNAPSHOT' 7 | 8 | repositories { 9 | mavenCentral() 10 | } 11 | 12 | dependencies { 13 | testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0' 14 | testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0' 15 | } 16 | 17 | test { 18 | useJUnitPlatform() 19 | } -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/build/classes/java/main/LoopsNested/ContinueLevel.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/array/implementation/build/classes/java/main/LoopsNested/ContinueLevel.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/build/classes/java/main/LoopsNested/DoWhileExample.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/array/implementation/build/classes/java/main/LoopsNested/DoWhileExample.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/build/classes/java/main/LoopsNested/LoopWhile.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/array/implementation/build/classes/java/main/LoopsNested/LoopWhile.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/build/classes/java/main/LoopsNested/NestedLoop.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/array/implementation/build/classes/java/main/LoopsNested/NestedLoop.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/build/classes/java/main/Massiv/MultiDemtion.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/array/implementation/build/classes/java/main/Massiv/MultiDemtion.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/build/classes/java/main/Massiv/MyArray.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/array/implementation/build/classes/java/main/Massiv/MyArray.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/build/classes/java/main/Massiv/MyArrayAgain.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/array/implementation/build/classes/java/main/Massiv/MyArrayAgain.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/build/classes/java/main/Massiv/NoChangeArray.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/array/implementation/build/classes/java/main/Massiv/NoChangeArray.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/build/classes/java/main/Massiv/SearchClass.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/array/implementation/build/classes/java/main/Massiv/SearchClass.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/build/classes/java/main/Massiv/TormizMassiv.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/array/implementation/build/classes/java/main/Massiv/TormizMassiv.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/build/classes/java/main/Massiv/TypeInferenceInFor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/array/implementation/build/classes/java/main/Massiv/TypeInferenceInFor.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/build/tmp/compileJava/previous-compilation-data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/array/implementation/build/tmp/compileJava/previous-compilation-data.bin -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/array/implementation/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.1-bin.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'ArrayImplementation' 2 | 3 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/array/implementation/src/.DS_Store -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/src/main/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/array/implementation/src/main/.DS_Store -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/src/main/java/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/array/implementation/src/main/java/.DS_Store -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/src/main/java/LoopsNested/ContinueLevel.java: -------------------------------------------------------------------------------- 1 | package LoopsNested; 2 | 3 | /** 4 | * @Company: {Nextree Inc.} 5 | * @Author: {urunov} 6 | * @Project: {ArrayImplementation} 7 | * @Date: {2022/02/05 && 11:38 PM} 8 | */ 9 | public class ContinueLevel { 10 | // 11 | public static void main(String[] args) { 12 | 13 | 14 | outer: for (int i=0; i<10; i++){ 15 | for (int j=0; j<10; j++){ 16 | if (j>i){ 17 | 18 | System.out.println(); 19 | continue outer; // 20 | } 21 | System.out.print(" " + (i * j)); 22 | } 23 | } 24 | System.out.println(); 25 | 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/src/main/java/LoopsNested/DoWhileExample.java: -------------------------------------------------------------------------------- 1 | package LoopsNested; 2 | 3 | /** 4 | * @Company: {Nextree Inc.} 5 | * @Author: {urunov} 6 | * @Project: {ArrayImplementation} 7 | * @Date: {2022/02/05 && 9:42 PM} 8 | */ 9 | public class DoWhileExample { 10 | public static void main(String[] args) { 11 | // 12 | int number = 10; 13 | 14 | do { 15 | System.out.println("tick it> " + number); 16 | number++; 17 | } while (number>0); 18 | 19 | // while (number>0){ 20 | // System.out.println("this --> " + number); 21 | // number--; 22 | // } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/src/main/java/LoopsNested/LoopWhile.java: -------------------------------------------------------------------------------- 1 | package LoopsNested; 2 | 3 | /** 4 | * @Company: {Nextree Inc.} 5 | * @Author: {urunov} 6 | * @Project: {ArrayImplementation} 7 | * @Date: {2022/02/05 && 9:37 PM} 8 | */ 9 | public class LoopWhile { 10 | public static void main(String[] args) { 11 | // 12 | int leftNumber = 85; 13 | int rightNumber =100; 14 | 15 | 16 | while(++leftNumber < --rightNumber); // no body 17 | 18 | System.out.println("Midpoint = " + leftNumber); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/src/main/java/Massiv/MultiDemtion.java: -------------------------------------------------------------------------------- 1 | package Massiv; 2 | 3 | /** 4 | * @Company: {Nextree } 5 | * @Author: {urunov} 6 | * @Project: {ArrayImplementation} 7 | * @Date: {2022/02/05 && 10:16 PM} 8 | */ 9 | public class MultiDemtion { 10 | public static void main(String[] args) { 11 | // 12 | int sum = 0; 13 | int nums[][] = new int[3][5]; 14 | 15 | // given nums some values 16 | for (int i=0; i<3; i++) 17 | for (int j=0; j<5; j++) 18 | nums[i][j] = (i+1) * (j+1); 19 | 20 | // use for-each for to display and sum the values 21 | for (int[] x: nums) { 22 | for (int y : x) { 23 | System.out.println("Value is : " + y); 24 | sum += y; 25 | } 26 | } 27 | System.out.println("Summations: " + sum); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/src/main/java/Massiv/NoChangeArray.java: -------------------------------------------------------------------------------- 1 | package Massiv; 2 | 3 | /** 4 | * @Company: {Nextree Inc.} 5 | * @Author: {urunov} 6 | * @Project: {ArrayImplementation} 7 | * @Date: {2022/02/05 && 10:12 PM} 8 | */ 9 | public class NoChangeArray { 10 | public static void main(String[] args) { 11 | int nums [] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}; 12 | 13 | for (int x: nums){ 14 | System.out.print( x + " "); 15 | x*=10; // no effect no nums 16 | } 17 | 18 | System.out.println(); 19 | 20 | for (int x: nums){ 21 | System.out.print(x + " "); 22 | } 23 | 24 | System.out.println(); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/src/main/java/Massiv/SearchClass.java: -------------------------------------------------------------------------------- 1 | package Massiv; 2 | 3 | /** 4 | * @Company: {Nextree} 5 | * @Author: {urunov} 6 | * @Project: {ArrayImplementation} 7 | * @Date: {2022/02/05 && 10:25 PM} 8 | */ 9 | public class SearchClass { 10 | public static void main(String[] args) { 11 | // 12 | int nums[] = {4, 2, 1, 43, 23, 66,56, -43, 5, 34, -66}; 13 | int val = 2; 14 | boolean found = false; 15 | 16 | // use for-each style to search nums for val 17 | for (int x: nums){ 18 | if (x==val){ 19 | found = true; 20 | System.out.println(found); 21 | break; 22 | } 23 | } 24 | if (found != true) 25 | System.out.println("Value could not find"); 26 | } 27 | } 28 | 29 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/array/implementation/src/main/java/Massiv/TypeInferenceInFor.java: -------------------------------------------------------------------------------- 1 | package Massiv; 2 | 3 | /** 4 | * @Company: {Nextree} 5 | * @Author: {urunov} 6 | * @Project: {ArrayImplementation} 7 | * @Date: {2022/02/05 && 10:32 PM} 8 | */ 9 | public class TypeInferenceInFor { 10 | public static void main(String[] args) { 11 | 12 | // Use type inference with the loop control variable. 13 | System.out.print("Values of x: "); 14 | for (var x =2.5; x< 100.0; x =x * 2) 15 | System.out.println(x + " "); 16 | 17 | System.out.println(); 18 | 19 | // use type inference with the iteration variable. 20 | int[] nums = {1, 3, 4, 5, 6, 23}; 21 | int k=0; 22 | System.out.print("Values in nums array: "); 23 | for (var v: nums) 24 | System.out.println(v + " " + nums[k]); 25 | k++; 26 | 27 | 28 | System.out.println(); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/.DS_Store -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/ArrayLists/.gradle/7.1/dependencies-accessors/dependencies-accessors.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/ArrayLists/.gradle/7.1/dependencies-accessors/dependencies-accessors.lock -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/ArrayLists/.gradle/7.1/dependencies-accessors/gc.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/ArrayLists/.gradle/7.1/dependencies-accessors/gc.properties -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/ArrayLists/.gradle/7.1/executionHistory/executionHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/ArrayLists/.gradle/7.1/executionHistory/executionHistory.bin -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/ArrayLists/.gradle/7.1/executionHistory/executionHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/ArrayLists/.gradle/7.1/executionHistory/executionHistory.lock -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/ArrayLists/.gradle/7.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/ArrayLists/.gradle/7.1/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/ArrayLists/.gradle/7.1/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/ArrayLists/.gradle/7.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/ArrayLists/.gradle/7.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/ArrayLists/.gradle/7.1/gc.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/ArrayLists/.gradle/7.1/gc.properties -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/ArrayLists/.gradle/buildOutputCleanup/buildOutputCleanup.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/ArrayLists/.gradle/buildOutputCleanup/buildOutputCleanup.lock -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/ArrayLists/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Mon Mar 07 19:25:30 KST 2022 2 | gradle.version=7.1 3 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/ArrayLists/.gradle/buildOutputCleanup/outputFiles.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/ArrayLists/.gradle/buildOutputCleanup/outputFiles.bin -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/ArrayLists/.gradle/checksums/checksums.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/ArrayLists/.gradle/checksums/checksums.lock -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/ArrayLists/.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/ArrayLists/.gradle/vcs-1/gc.properties -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/ArrayLists/.idea/.name: -------------------------------------------------------------------------------- 1 | ListArrayList -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/ArrayLists/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/ArrayLists/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 16 | 17 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/ArrayLists/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 14 | 15 | 19 | 20 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/ArrayLists/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 13 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/ArrayLists/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/ArrayLists/.idea/sonarlint/issuestore/f/0/f07866736216be0ee2aba49e392191aeae700a35: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/ArrayLists/.idea/sonarlint/issuestore/f/0/f07866736216be0ee2aba49e392191aeae700a35 -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/ArrayLists/.idea/sonarlint/issuestore/index.pb: -------------------------------------------------------------------------------- 1 | 2 | < 3 | build.gradle,f/0/f07866736216be0ee2aba49e392191aeae700a35 -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/ArrayLists/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/ArrayLists/build.gradle: -------------------------------------------------------------------------------- 1 | plugins { 2 | id 'java' 3 | } 4 | 5 | group 'org.example' 6 | version '1.0-SNAPSHOT' 7 | 8 | repositories { 9 | mavenCentral() 10 | } 11 | 12 | dependencies { 13 | testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0' 14 | testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0' 15 | } 16 | 17 | test { 18 | useJUnitPlatform() 19 | } -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/ArrayLists/build/classes/java/main/com/urunov/ds/Doctors.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/ArrayLists/build/classes/java/main/com/urunov/ds/Doctors.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/ArrayLists/build/classes/java/main/com/urunov/ds/IteratorDemo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/ArrayLists/build/classes/java/main/com/urunov/ds/IteratorDemo.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/ArrayLists/build/classes/java/main/com/urunov/ds/ListDemo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/ArrayLists/build/classes/java/main/com/urunov/ds/ListDemo.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/ArrayLists/build/classes/java/main/com/urunov/ds/Student.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/ArrayLists/build/classes/java/main/com/urunov/ds/Student.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/ArrayLists/build/classes/java/main/com/urunov/ds/StudentList.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/ArrayLists/build/classes/java/main/com/urunov/ds/StudentList.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/ArrayLists/build/tmp/compileJava/previous-compilation-data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/ArrayLists/build/tmp/compileJava/previous-compilation-data.bin -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/ArrayLists/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/ArrayLists/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/ArrayLists/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.1-bin.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/ArrayLists/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'ListArrayList' 2 | 3 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/ArrayLists/src/main/java/com/urunov/ds/Poliklinka.java: -------------------------------------------------------------------------------- 1 | package com.urunov.ds; 2 | 3 | /** 4 | * @Company: {} 5 | * @Author: {urunov} 6 | * @Project: {ListArrayList} 7 | * @Date: {2022/03/29 && 8:02 PM} 8 | */ 9 | public class Poliklinka { 10 | public static void main(String[] args) { 11 | 12 | // List 13 | // ArrayList 14 | // Array - Massive 15 | // Iterator 16 | 17 | 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/ArrayLists/src/main/java/com/urunov/ds/Student.java: -------------------------------------------------------------------------------- 1 | package com.urunov.ds; 2 | 3 | /** 4 | * @Company: {} 5 | * @Author: {urunov} 6 | * @Project: {ListArrayList} 7 | * @Date: {2022/03/07 && 7:34 PM} 8 | */ 9 | public class Student { 10 | // 11 | int role; 12 | String name; 13 | 14 | @Override 15 | public String toString() { 16 | return "Student info{" + 17 | "role=" + role + 18 | ", name='" + name + '\'' + 19 | '}'; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedList/.DS_Store -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/.gradle/7.1/dependencies-accessors/dependencies-accessors.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedList/.gradle/7.1/dependencies-accessors/dependencies-accessors.lock -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/.gradle/7.1/dependencies-accessors/gc.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedList/.gradle/7.1/dependencies-accessors/gc.properties -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/.gradle/7.1/executionHistory/executionHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedList/.gradle/7.1/executionHistory/executionHistory.bin -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/.gradle/7.1/executionHistory/executionHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedList/.gradle/7.1/executionHistory/executionHistory.lock -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/.gradle/7.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/.gradle/7.1/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedList/.gradle/7.1/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/.gradle/7.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedList/.gradle/7.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/.gradle/7.1/gc.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedList/.gradle/7.1/gc.properties -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/.gradle/buildOutputCleanup/buildOutputCleanup.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedList/.gradle/buildOutputCleanup/buildOutputCleanup.lock -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Tue Mar 08 19:47:43 KST 2022 2 | gradle.version=7.1 3 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/.gradle/buildOutputCleanup/outputFiles.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedList/.gradle/buildOutputCleanup/outputFiles.bin -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/.gradle/checksums/checksums.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedList/.gradle/checksums/checksums.lock -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedList/.gradle/vcs-1/gc.properties -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/.idea/.name: -------------------------------------------------------------------------------- 1 | JavaSingly -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/.idea/LinkedList.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 16 | 17 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 14 | 15 | 19 | 20 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 10 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/.idea/sonarlint/issuestore/1/5/1591b44c36b83b4de4fcb611816fc5521f630fb1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedList/.idea/sonarlint/issuestore/1/5/1591b44c36b83b4de4fcb611816fc5521f630fb1 -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/.idea/sonarlint/issuestore/3/5/352fcf9c243ae8e991ee989fa73cf81297d2a0f1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedList/.idea/sonarlint/issuestore/3/5/352fcf9c243ae8e991ee989fa73cf81297d2a0f1 -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/.idea/sonarlint/issuestore/4/3/434aaf07cff443a86a3849ddaaa5fc6094031048: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedList/.idea/sonarlint/issuestore/4/3/434aaf07cff443a86a3849ddaaa5fc6094031048 -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/.idea/sonarlint/issuestore/4/6/46cf2fefe8400cf56e67451f70e274949be06ca8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedList/.idea/sonarlint/issuestore/4/6/46cf2fefe8400cf56e67451f70e274949be06ca8 -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/.idea/sonarlint/issuestore/4/d/4dacf6bc47cb88513874256bf8451bf80b3fb6f5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedList/.idea/sonarlint/issuestore/4/d/4dacf6bc47cb88513874256bf8451bf80b3fb6f5 -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/.idea/sonarlint/issuestore/5/4/543daf1363d5a5d0ccadfac08af34dbcc444f382: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedList/.idea/sonarlint/issuestore/5/4/543daf1363d5a5d0ccadfac08af34dbcc444f382 -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/.idea/sonarlint/issuestore/5/7/57b0d333570f363d8cdb2e98335e6ec31db9753f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedList/.idea/sonarlint/issuestore/5/7/57b0d333570f363d8cdb2e98335e6ec31db9753f -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/.idea/sonarlint/issuestore/6/e/6e9ab4f172de0852108b66502796304637bd74be: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedList/.idea/sonarlint/issuestore/6/e/6e9ab4f172de0852108b66502796304637bd74be -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/.idea/sonarlint/issuestore/7/0/70c767ccac60869518b489e57477914aa30d2281: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedList/.idea/sonarlint/issuestore/7/0/70c767ccac60869518b489e57477914aa30d2281 -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/.idea/sonarlint/issuestore/a/e/ae55e3560a56ca2b417da6ebdd44e0f118e1ba3d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedList/.idea/sonarlint/issuestore/a/e/ae55e3560a56ca2b417da6ebdd44e0f118e1ba3d -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/.idea/sonarlint/issuestore/e/4/e4c0922e05f1389936b2a8cdd5cbc9ae7f198e81: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedList/.idea/sonarlint/issuestore/e/4/e4c0922e05f1389936b2a8cdd5cbc9ae7f198e81 -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/.idea/sonarlint/issuestore/e/5/e5f5916f4d4decf0c8a4d67495690e4e8158bda0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedList/.idea/sonarlint/issuestore/e/5/e5f5916f4d4decf0c8a4d67495690e4e8158bda0 -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/.idea/sonarlint/issuestore/f/0/f07866736216be0ee2aba49e392191aeae700a35: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedList/.idea/sonarlint/issuestore/f/0/f07866736216be0ee2aba49e392191aeae700a35 -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/build.gradle: -------------------------------------------------------------------------------- 1 | plugins { 2 | id 'java' 3 | } 4 | 5 | group 'org.example' 6 | version '1.0-SNAPSHOT' 7 | 8 | repositories { 9 | mavenCentral() 10 | } 11 | 12 | dependencies { 13 | testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0' 14 | testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0' 15 | } 16 | 17 | test { 18 | useJUnitPlatform() 19 | } -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/build/classes/java/main/com/project/collect/AddLinkedList.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedList/build/classes/java/main/com/project/collect/AddLinkedList.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/build/classes/java/main/com/project/collect/AddingByIndex.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedList/build/classes/java/main/com/project/collect/AddingByIndex.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/build/classes/java/main/com/project/collect/ArrayToLinkedList.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedList/build/classes/java/main/com/project/collect/ArrayToLinkedList.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/build/classes/java/main/com/project/collect/IndexOfLink.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedList/build/classes/java/main/com/project/collect/IndexOfLink.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/build/classes/java/main/com/project/collect/LinkedListToArray.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedList/build/classes/java/main/com/project/collect/LinkedListToArray.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/build/classes/java/main/com/project/collect/OfferFirstLink.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedList/build/classes/java/main/com/project/collect/OfferFirstLink.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/build/classes/java/main/com/project/collect/PopLinkedList.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedList/build/classes/java/main/com/project/collect/PopLinkedList.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/build/classes/java/main/com/project/collect/ProcessLinkedList.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedList/build/classes/java/main/com/project/collect/ProcessLinkedList.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/build/classes/java/main/com/project/collect/RemoveLinkedList.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedList/build/classes/java/main/com/project/collect/RemoveLinkedList.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/build/classes/java/main/com/project/collect/SetLinkedList.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedList/build/classes/java/main/com/project/collect/SetLinkedList.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/build/classes/java/main/com/project/differences/LinkedListDemo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedList/build/classes/java/main/com/project/differences/LinkedListDemo.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/build/classes/java/main/com/project/differences/LinkedListImpProcess$Node.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedList/build/classes/java/main/com/project/differences/LinkedListImpProcess$Node.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/build/classes/java/main/com/project/differences/LinkedListImpProcess.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedList/build/classes/java/main/com/project/differences/LinkedListImpProcess.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/build/tmp/compileJava/previous-compilation-data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedList/build/tmp/compileJava/previous-compilation-data.bin -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedList/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.1-bin.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'JavaSingly' 2 | 3 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/src/main/java/com/project/collect/AddingByIndex.java: -------------------------------------------------------------------------------- 1 | package com.project.collect; 2 | 3 | import java.util.LinkedList; 4 | 5 | /** 6 | * @Company: {} 7 | * @Author: {urunov} 8 | * @Project: {JavaSingly} 9 | * @Date: {2022/03/08 && 10:24 PM} 10 | */ 11 | public class AddingByIndex { 12 | public static void main(String[] args) { 13 | 14 | LinkedList list = new LinkedList<>(); 15 | list.add("how"); 16 | list.add("are"); 17 | list.add("?"); 18 | list.add("to"); 19 | list.add("Office"); 20 | System.out.println(" > "+ list); 21 | list.add(2, "you"); 22 | list.add(4, "welcome"); 23 | System.out.println(" " + list); 24 | 25 | //list.clear(); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/src/main/java/com/project/collect/ArrayToLinkedList.java: -------------------------------------------------------------------------------- 1 | package com.project.collect; 2 | 3 | import java.util.LinkedList; 4 | import java.util.List; 5 | 6 | /** 7 | * @Company: {} 8 | * @Author: {urunov} 9 | * @Project: {JavaSingly} 10 | * @Date: {2022/03/08 && 10:55 PM} 11 | */ 12 | public class ArrayToLinkedList { 13 | public static void main(String[] args) { 14 | 15 | String[] cources = {"java", "php", "hadoop", "devOps", "phyton"}; 16 | List coursesList = new LinkedList<>(); 17 | 18 | for (String s: cources){ 19 | coursesList.add(s); 20 | } 21 | System.out.println("The array of courses: " + coursesList); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/src/main/java/com/project/collect/IndexOfLink.java: -------------------------------------------------------------------------------- 1 | package com.project.collect; 2 | 3 | import java.util.LinkedList; 4 | 5 | /** 6 | * @Company: {} 7 | * @Author: {urunov} 8 | * @Project: {JavaSingly} 9 | * @Date: {2022/03/08 && 10:37 PM} 10 | */ 11 | public class IndexOfLink { 12 | public static void main(String[] args) { 13 | 14 | LinkedList list = new LinkedList(); 15 | 16 | list.add("using"); 17 | list.add("index"); 18 | list.add("of"); 19 | list.add("method"); 20 | 21 | System.out.println("LinkedList: " + list); 22 | 23 | System.out.println("The first occurrence of using is at index =" + list.indexOf("using")); 24 | System.out.println("The first occurrence of using is at index =" + list.indexOf("Method")); 25 | System.out.println("The first occurrence of using is at index =" + list.indexOf("method")); 26 | 27 | 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/src/main/java/com/project/collect/OfferFirstLink.java: -------------------------------------------------------------------------------- 1 | package com.project.collect; 2 | 3 | import java.util.LinkedList; 4 | 5 | /** 6 | * @Company: {} 7 | * @Author: {urunov} 8 | * @Project: {JavaSingly} 9 | * @Date: {2022/03/08 && 10:41 PM} 10 | */ 11 | public class OfferFirstLink { 12 | public static void main(String[] args) { 13 | // 14 | LinkedList list = new LinkedList(); 15 | 16 | list.add("BWM"); 17 | list.add("MERCE"); 18 | list.add("Lada"); 19 | 20 | System.out.println("Linked list before insertion using offerLast(): " + list); 21 | list.offerLast("Jaguar"); 22 | list.offerFirst("Volga"); 23 | System.out.println("LinkedList after insertion using offerLast(): " + list); 24 | 25 | 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/src/main/java/com/project/collect/PopLinkedList.java: -------------------------------------------------------------------------------- 1 | package com.project.collect; 2 | 3 | import java.util.LinkedList; 4 | 5 | /** 6 | * @Company: {} 7 | * @Author: {urunov} 8 | * @Project: {JavaSingly} 9 | * @Date: {2022/03/08 && 10:45 PM} 10 | */ 11 | public class PopLinkedList { 12 | public static void main(String[] args) { 13 | 14 | LinkedList stack = new LinkedList<>(); 15 | stack.push("Allo"); 16 | stack.push("Jhon"); 17 | stack.push("how "); 18 | stack.push("are "); 19 | stack.push("you"); 20 | 21 | 22 | System.out.println("The first : " + stack); 23 | 24 | String result = stack.pop(); 25 | stack.push("Urunov"); 26 | 27 | System.out.println(result); 28 | 29 | System.out.println(stack); 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/src/main/java/com/project/collect/RemoveLinkedList.java: -------------------------------------------------------------------------------- 1 | package com.project.collect; 2 | 3 | import java.util.LinkedList; 4 | 5 | /** 6 | * @Company: {} 7 | * @Author: {urunov} 8 | * @Project: {JavaSingly} 9 | * @Date: {2022/03/08 && 10:51 PM} 10 | */ 11 | public class RemoveLinkedList { 12 | public static void main(String[] args) { 13 | 14 | LinkedList list = new LinkedList(); 15 | list.add("Apple"); 16 | list.add("Banana"); 17 | list.add("Grape"); 18 | list.add("pineApple"); 19 | System.out.println("LinkedList: " + list); 20 | list.remove(); 21 | System.out.println("Final list " + list); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedList/src/main/java/com/project/collect/SetLinkedList.java: -------------------------------------------------------------------------------- 1 | package com.project.collect; 2 | 3 | import java.util.LinkedList; 4 | 5 | /** 6 | * @Company: {} 7 | * @Author: {urunov} 8 | * @Project: {JavaSingly} 9 | * @Date: {2022/03/08 && 10:53 PM} 10 | */ 11 | public class SetLinkedList { 12 | public static void main(String[] args) { 13 | 14 | 15 | LinkedList list = new LinkedList(); 16 | list.add("Apple"); 17 | list.add("Banana"); 18 | list.add("Grape"); 19 | list.add("pineApple"); 20 | 21 | System.out.println(" LinkedList: " + list); 22 | System.out.println(" object that is replace is " + list.set(2, "kiwi")); 23 | System.out.println(" object that is replace is " + list.set(3, "Orange")); 24 | System.out.println(" The new LinkedList is: " + list); 25 | 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListDoubly/.gradle/7.1/dependencies-accessors/dependencies-accessors.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedListDoubly/.gradle/7.1/dependencies-accessors/dependencies-accessors.lock -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListDoubly/.gradle/7.1/dependencies-accessors/gc.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedListDoubly/.gradle/7.1/dependencies-accessors/gc.properties -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListDoubly/.gradle/7.1/executionHistory/executionHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedListDoubly/.gradle/7.1/executionHistory/executionHistory.bin -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListDoubly/.gradle/7.1/executionHistory/executionHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedListDoubly/.gradle/7.1/executionHistory/executionHistory.lock -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListDoubly/.gradle/7.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListDoubly/.gradle/7.1/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedListDoubly/.gradle/7.1/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListDoubly/.gradle/7.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedListDoubly/.gradle/7.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListDoubly/.gradle/7.1/gc.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedListDoubly/.gradle/7.1/gc.properties -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListDoubly/.gradle/buildOutputCleanup/buildOutputCleanup.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedListDoubly/.gradle/buildOutputCleanup/buildOutputCleanup.lock -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListDoubly/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Wed Mar 16 21:39:55 KST 2022 2 | gradle.version=7.1 3 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListDoubly/.gradle/buildOutputCleanup/outputFiles.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedListDoubly/.gradle/buildOutputCleanup/outputFiles.bin -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListDoubly/.gradle/checksums/checksums.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedListDoubly/.gradle/checksums/checksums.lock -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListDoubly/.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedListDoubly/.gradle/vcs-1/gc.properties -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListDoubly/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | # Zeppelin ignored files 10 | /ZeppelinRemoteNotebooks/ 11 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListDoubly/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListDoubly/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16 | 17 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListDoubly/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 14 | 15 | 19 | 20 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListDoubly/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 13 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListDoubly/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListDoubly/.idea/sonarIssues.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 23 | 24 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListDoubly/.idea/sonarlint/issuestore/index.pb: -------------------------------------------------------------------------------- 1 | 2 | < 3 | build.gradle,f/0/f07866736216be0ee2aba49e392191aeae700a35 4 | i 5 | 9src/main/java/com/linkedlist/sample/LinkedListSingly.java,b/1/b1bbaadbfb384901a794d8fe9ff2ffd9a9cf3f6f -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListDoubly/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListDoubly/build.gradle: -------------------------------------------------------------------------------- 1 | plugins { 2 | id 'java' 3 | } 4 | 5 | group 'org.example' 6 | version '1.0-SNAPSHOT' 7 | 8 | repositories { 9 | mavenCentral() 10 | } 11 | 12 | dependencies { 13 | testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0' 14 | testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0' 15 | } 16 | 17 | test { 18 | useJUnitPlatform() 19 | } -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListDoubly/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedListDoubly/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListDoubly/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.1-bin.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListDoubly/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'LinkedListDoubly' 2 | 3 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListDoubly/src/main/java/com/linkedlist/sample/LinkedListSingly.java: -------------------------------------------------------------------------------- 1 | package com.linkedlist.sample; 2 | 3 | /** 4 | * @Company: {} 5 | * @Author: {urunov} 6 | * @Project: {LinkedListDoubly} 7 | * @Date: {2022/03/16 && 9:59 PM} 8 | */ 9 | public class LinkedListSingly { 10 | // 11 | public static void main(String[] args) { 12 | 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListSingly/.gradle/7.1/dependencies-accessors/dependencies-accessors.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedListSingly/.gradle/7.1/dependencies-accessors/dependencies-accessors.lock -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListSingly/.gradle/7.1/dependencies-accessors/gc.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedListSingly/.gradle/7.1/dependencies-accessors/gc.properties -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListSingly/.gradle/7.1/executionHistory/executionHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedListSingly/.gradle/7.1/executionHistory/executionHistory.bin -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListSingly/.gradle/7.1/executionHistory/executionHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedListSingly/.gradle/7.1/executionHistory/executionHistory.lock -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListSingly/.gradle/7.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListSingly/.gradle/7.1/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedListSingly/.gradle/7.1/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListSingly/.gradle/7.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedListSingly/.gradle/7.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListSingly/.gradle/7.1/gc.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedListSingly/.gradle/7.1/gc.properties -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListSingly/.gradle/buildOutputCleanup/buildOutputCleanup.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedListSingly/.gradle/buildOutputCleanup/buildOutputCleanup.lock -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListSingly/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Mon Mar 14 19:25:20 KST 2022 2 | gradle.version=7.1 3 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListSingly/.gradle/buildOutputCleanup/outputFiles.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedListSingly/.gradle/buildOutputCleanup/outputFiles.bin -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListSingly/.gradle/checksums/checksums.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedListSingly/.gradle/checksums/checksums.lock -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListSingly/.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedListSingly/.gradle/vcs-1/gc.properties -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListSingly/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Datasource local storage ignored files 5 | /dataSources/ 6 | /dataSources.local.xml 7 | # Editor-based HTTP Client requests 8 | /httpRequests/ 9 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListSingly/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListSingly/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 17 | 18 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListSingly/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 14 | 15 | 19 | 20 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListSingly/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 13 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListSingly/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListSingly/.idea/sonarlint/issuestore/2/8/28067036a4845f6d2f78c7e48593e1935f67ab52: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedListSingly/.idea/sonarlint/issuestore/2/8/28067036a4845f6d2f78c7e48593e1935f67ab52 -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListSingly/.idea/sonarlint/issuestore/5/e/5edefa43cd768b54c66b2716710994a7aa8004b8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedListSingly/.idea/sonarlint/issuestore/5/e/5edefa43cd768b54c66b2716710994a7aa8004b8 -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListSingly/.idea/sonarlint/issuestore/c/0/c0290f12186a772f3e8de4a0c669584eddb68474: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedListSingly/.idea/sonarlint/issuestore/c/0/c0290f12186a772f3e8de4a0c669584eddb68474 -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListSingly/.idea/sonarlint/issuestore/e/2/e289ec4303f35423ecbdd1939d200c28dbcddacc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedListSingly/.idea/sonarlint/issuestore/e/2/e289ec4303f35423ecbdd1939d200c28dbcddacc -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListSingly/.idea/sonarlint/issuestore/f/0/f07866736216be0ee2aba49e392191aeae700a35: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedListSingly/.idea/sonarlint/issuestore/f/0/f07866736216be0ee2aba49e392191aeae700a35 -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListSingly/.idea/sonarlint/issuestore/index.pb: -------------------------------------------------------------------------------- 1 | 2 | < 3 | build.gradle,f/0/f07866736216be0ee2aba49e392191aeae700a35 4 | j 5 | :src/main/java/com/collection/singlyList/LinkedMethods.java,2/8/28067036a4845f6d2f78c7e48593e1935f67ab52 6 | g 7 | 7src/main/java/com/collection/singlyList/MyIterator.java,c/0/c0290f12186a772f3e8de4a0c669584eddb68474 8 | m 9 | =src/main/java/com/collection/singlyList/LinkedListSingly.java,e/2/e289ec4303f35423ecbdd1939d200c28dbcddacc 10 | e 11 | 5src/main/java/com/collection/singlyList/MainPoly.java,5/e/5edefa43cd768b54c66b2716710994a7aa8004b8 -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListSingly/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListSingly/build.gradle: -------------------------------------------------------------------------------- 1 | plugins { 2 | id 'java' 3 | } 4 | 5 | group 'org.example' 6 | version '1.0-SNAPSHOT' 7 | 8 | repositories { 9 | mavenCentral() 10 | } 11 | 12 | dependencies { 13 | testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0' 14 | testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0' 15 | } 16 | 17 | test { 18 | useJUnitPlatform() 19 | } -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListSingly/build/classes/java/main/com/collection/singlyList/LinkedListSingly$Node.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedListSingly/build/classes/java/main/com/collection/singlyList/LinkedListSingly$Node.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListSingly/build/classes/java/main/com/collection/singlyList/LinkedListSingly.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedListSingly/build/classes/java/main/com/collection/singlyList/LinkedListSingly.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListSingly/build/classes/java/main/com/collection/singlyList/LinkedMethods.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedListSingly/build/classes/java/main/com/collection/singlyList/LinkedMethods.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListSingly/build/classes/java/main/com/collection/singlyList/MainPoly.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedListSingly/build/classes/java/main/com/collection/singlyList/MainPoly.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListSingly/build/classes/java/main/com/collection/singlyList/MyIterator.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedListSingly/build/classes/java/main/com/collection/singlyList/MyIterator.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListSingly/build/tmp/compileJava/previous-compilation-data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedListSingly/build/tmp/compileJava/previous-compilation-data.bin -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListSingly/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/list/LinkedListSingly/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListSingly/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.1-bin.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListSingly/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'LinkedListSingly' 2 | 3 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListSingly/src/main/java/com/collection/singlyList/LinkedMethods.java: -------------------------------------------------------------------------------- 1 | package com.collection.singlyList; 2 | 3 | /** 4 | * @Company: {} 5 | * @Author: {urunov} 6 | * @Project: {LinkedListSingly} 7 | * @Date: {2022/03/14 && 8:00 PM} 8 | */ 9 | public interface LinkedMethods { 10 | 11 | int size(); 12 | boolean isEmpty(); 13 | boolean contains(Object object); 14 | MyIterator iterator(); 15 | void add(E element); 16 | void add(int index, E element); 17 | E get(int index); 18 | void remove(Object object); 19 | void remove(int index); 20 | void addAll(LinkedMethods collection); 21 | void clear(); 22 | T[] toArray(T[] some); 23 | } 24 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListSingly/src/main/java/com/collection/singlyList/MainPoly.java: -------------------------------------------------------------------------------- 1 | package com.collection.singlyList; 2 | 3 | /** 4 | * @Company: {} 5 | * @Author: {urunov} 6 | * @Project: {LinkedListSingly} 7 | * @Date: {2022/03/14 && 8:34 PM} 8 | */ 9 | public class MainPoly { 10 | public static void main(String[] args) { 11 | 12 | LinkedListSingly list = new LinkedListSingly(); 13 | list.addLast("Truess"); 14 | list.add("Gere"); 15 | list.add("Urunov"); 16 | 17 | System.out.println(list); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/LinkedListSingly/src/main/java/com/collection/singlyList/MyIterator.java: -------------------------------------------------------------------------------- 1 | package com.collection.singlyList; 2 | 3 | /** 4 | * @Company: {} 5 | * @Author: {urunov} 6 | * @Project: {LinkedListSingly} 7 | * @Date: {2022/03/14 && 9:34 PM} 8 | */ 9 | public interface MyIterator { 10 | 11 | boolean hasNext(); 12 | E next(); 13 | } 14 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/list/README.md: -------------------------------------------------------------------------------- 1 | # Collection Framework 2 | 3 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/queue/.DS_Store -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/README.md: -------------------------------------------------------------------------------- 1 | # Data-Strucute-Algorithms 2 | 3 | ## Solutions of [Leetcode](https://leetcode.com/) problems in Java, Typescript, Rust, Python. 4 | ## (coming soon all sources - updated: October, 2021) 5 | 6 | 7 | | Problem Category | Count | 8 | | :--- | :----: | 9 | | Easy | 86 | 10 | | Medium | 32 | 11 | | Hard | 3 | 12 | 13 | 14 | 15 | 16 | ## Road Map how to becomes Top Company Developer. 17 | 18 | ![RoadMap](https://user-images.githubusercontent.com/11626327/103853417-53e83780-50f1-11eb-986a-71b367a3d8a2.jpg) 19 | 20 | 21 | ## Reference Materials 22 | 1. Competitive Programmer’s Handbook [(fn)](https://cses.fi/book/book.pdf) 23 | 2. HashMap, LinkedHashMap, TreeMap - [Dynamic programing](https://www.youtube.com/watch?v=TTdheF15nIU&list=PL78sHffDjI75_EK-m6CO6kc3NCyR6kKkX&index=30) 24 | 3. Skiena The Algorithm Design Manual.[Algorithm](https://mimoza.marmara.edu.tr/~msakalli/cse706_12/SkienaTheAlgorithmDesignManual.pdf) 25 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/.gradle/7.1/dependencies-accessors/dependencies-accessors.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/queue/implementation/.gradle/7.1/dependencies-accessors/dependencies-accessors.lock -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/.gradle/7.1/dependencies-accessors/gc.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/queue/implementation/.gradle/7.1/dependencies-accessors/gc.properties -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/.gradle/7.1/executionHistory/executionHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/queue/implementation/.gradle/7.1/executionHistory/executionHistory.bin -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/.gradle/7.1/executionHistory/executionHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/queue/implementation/.gradle/7.1/executionHistory/executionHistory.lock -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/.gradle/7.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/.gradle/7.1/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/queue/implementation/.gradle/7.1/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/.gradle/7.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/queue/implementation/.gradle/7.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/.gradle/7.1/gc.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/queue/implementation/.gradle/7.1/gc.properties -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/.gradle/buildOutputCleanup/buildOutputCleanup.lock: -------------------------------------------------------------------------------- 1 | x15䒠e -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Mon Mar 07 21:36:50 KST 2022 2 | gradle.version=7.1 3 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/.gradle/buildOutputCleanup/outputFiles.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/queue/implementation/.gradle/buildOutputCleanup/outputFiles.bin -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/.gradle/checksums/checksums.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/queue/implementation/.gradle/checksums/checksums.lock -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/queue/implementation/.gradle/vcs-1/gc.properties -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Datasource local storage ignored files 5 | /dataSources/ 6 | /dataSources.local.xml 7 | # Editor-based HTTP Client requests 8 | /httpRequests/ 9 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/.idea/.name: -------------------------------------------------------------------------------- 1 | JavaQueueDemo -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 16 | 17 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 14 | 15 | 19 | 20 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 10 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/.idea/sonarlint/issuestore/1/b/1b6f13ebca52ebf2cbd5be1161d2791a1070f145: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/queue/implementation/.idea/sonarlint/issuestore/1/b/1b6f13ebca52ebf2cbd5be1161d2791a1070f145 -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/.idea/sonarlint/issuestore/7/6/7601c20922c07683db39264ec6fd1f94abb64ef9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/queue/implementation/.idea/sonarlint/issuestore/7/6/7601c20922c07683db39264ec6fd1f94abb64ef9 -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/.idea/sonarlint/issuestore/8/4/84df102e9f1619f510820d4b5334ebe3e4934be4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/queue/implementation/.idea/sonarlint/issuestore/8/4/84df102e9f1619f510820d4b5334ebe3e4934be4 -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/.idea/sonarlint/issuestore/a/e/aeaa6bc60632ba9d60c6e7f9369faddd0b841a35: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/queue/implementation/.idea/sonarlint/issuestore/a/e/aeaa6bc60632ba9d60c6e7f9369faddd0b841a35 -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/.idea/sonarlint/issuestore/c/5/c5ea14ee8b5ec8f36afdc7b15fe6a30d20726ef1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/queue/implementation/.idea/sonarlint/issuestore/c/5/c5ea14ee8b5ec8f36afdc7b15fe6a30d20726ef1 -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/.idea/sonarlint/issuestore/d/e/de65012758778af9004a506abbe4a6771e484e4d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/queue/implementation/.idea/sonarlint/issuestore/d/e/de65012758778af9004a506abbe4a6771e484e4d -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/.idea/sonarlint/issuestore/f/0/f07866736216be0ee2aba49e392191aeae700a35: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/queue/implementation/.idea/sonarlint/issuestore/f/0/f07866736216be0ee2aba49e392191aeae700a35 -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/.idea/sonarlint/issuestore/index.pb: -------------------------------------------------------------------------------- 1 | 2 | < 3 | build.gradle,f/0/f07866736216be0ee2aba49e392191aeae700a35 4 | h 5 | 8src/main/java/com/existing/command/IteratingExample.java,8/4/84df102e9f1619f510820d4b5334ebe3e4934be4 6 | s 7 | Csrc/main/java/com/existing/command/PriorityQueueImplementation.java,d/e/de65012758778af9004a506abbe4a6771e484e4d 8 | j 9 | :src/main/java/com/existing/command/QueueLinkedExample.java,a/e/aeaa6bc60632ba9d60c6e7f9369faddd0b841a35 10 | a 11 | 1src/main/java/com/existing/command/JustQueue.java,7/6/7601c20922c07683db39264ec6fd1f94abb64ef9 12 | f 13 | 6src/main/java/com/implementation/fromMe/QueueImpl.java,c/5/c5ea14ee8b5ec8f36afdc7b15fe6a30d20726ef1 14 | k 15 | ;src/main/java/com/implementation/fromMe/QueueInterface.java,1/b/1b6f13ebca52ebf2cbd5be1161d2791a1070f145 -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/build.gradle: -------------------------------------------------------------------------------- 1 | plugins { 2 | id 'java' 3 | } 4 | 5 | group 'org.example' 6 | version '1.0-SNAPSHOT' 7 | 8 | repositories { 9 | mavenCentral() 10 | } 11 | 12 | dependencies { 13 | testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0' 14 | testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0' 15 | } 16 | 17 | test { 18 | useJUnitPlatform() 19 | } -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/build/classes/java/main/com/existing/command/IteratingExample.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/queue/implementation/build/classes/java/main/com/existing/command/IteratingExample.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/build/classes/java/main/com/existing/command/JustQueue.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/queue/implementation/build/classes/java/main/com/existing/command/JustQueue.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/build/classes/java/main/com/existing/command/PriorityQueueImplementation.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/queue/implementation/build/classes/java/main/com/existing/command/PriorityQueueImplementation.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/build/classes/java/main/com/existing/command/QueueLinkedExample.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/queue/implementation/build/classes/java/main/com/existing/command/QueueLinkedExample.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/build/classes/java/main/com/implementation/fromMe/QueueImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/queue/implementation/build/classes/java/main/com/implementation/fromMe/QueueImpl.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/build/tmp/compileJava/previous-compilation-data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/queue/implementation/build/tmp/compileJava/previous-compilation-data.bin -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/queue/implementation/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.1-bin.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'JavaQueueDemo' 2 | 3 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/src/main/java/com/existing/command/JustQueue.java: -------------------------------------------------------------------------------- 1 | package com.existing.command; 2 | 3 | import java.util.PriorityQueue; 4 | import java.util.Queue; 5 | 6 | /** 7 | * @Company: {} 8 | * @Author: {urunov} 9 | * @Project: {JavaQueueDemo} 10 | * @Date: {2022/03/07 && 9:54 PM} 11 | */ 12 | public class JustQueue { 13 | public static void main(String[] args) { 14 | Queue just = new PriorityQueue<>(); 15 | 16 | just.add("Urunov"); 17 | just.add("Kuku"); 18 | just.add("Sadullyevich"); 19 | 20 | System.out.println(just); 21 | System.out.println(" razmer : " + just.size()); 22 | just.clear(); 23 | System.out.println("Posle clear: " + just); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/src/main/java/com/existing/command/QueueLinkedExample.java: -------------------------------------------------------------------------------- 1 | package com.existing.command; 2 | 3 | import java.util.LinkedList; 4 | import java.util.Queue; 5 | 6 | /** 7 | * @Company: {} 8 | * @Author: {urunov} 9 | * @Project: {JavaQueueDemo} 10 | * @Date: {2022/03/09 && 10:20 PM} 11 | */ 12 | public class QueueLinkedExample { 13 | public static void main(String[] args) { 14 | // 15 | Queue queue = new LinkedList<>(); 16 | 17 | queue.add("one"); 18 | queue.add("2"); 19 | queue.add("three"); 20 | queue.add("4"); 21 | System.out.println(queue); 22 | 23 | String element = queue.poll(); 24 | String element1 = queue.peek(); 25 | 26 | System.out.println("Poll: " + element); 27 | System.out.println("Peek: " + element1); 28 | 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/src/main/java/com/implementation/fromMe/QueueImpl.java: -------------------------------------------------------------------------------- 1 | package com.implementation.fromMe; 2 | 3 | /** 4 | * @Company: {} 5 | * @Author: {urunov} 6 | * @Project: {JavaQueueDemo} 7 | * @Date: {2022/03/09 && 10:23 PM} 8 | */ 9 | public class QueueImpl { 10 | 11 | } 12 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/queue/implementation/src/main/java/com/implementation/fromMe/QueueInterface.java: -------------------------------------------------------------------------------- 1 | package com.implementation.fromMe; 2 | 3 | /** 4 | * @Company: {} 5 | * @Author: {urunov} 6 | * @Project: {JavaQueueDemo} 7 | * @Date: {2022/03/10 && 9:59 PM} 8 | */ 9 | public interface QueueInterface { 10 | // 11 | boolean add(E e); 12 | E peek(); 13 | E element(); 14 | E remove(); 15 | E poll(); 16 | boolean offer(E e); 17 | int size(); 18 | 19 | } 20 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/set/.gradle/7.1/dependencies-accessors/dependencies-accessors.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/set/.gradle/7.1/dependencies-accessors/dependencies-accessors.lock -------------------------------------------------------------------------------- /Data-Structure-Implementation/set/.gradle/7.1/dependencies-accessors/gc.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/set/.gradle/7.1/dependencies-accessors/gc.properties -------------------------------------------------------------------------------- /Data-Structure-Implementation/set/.gradle/7.1/executionHistory/executionHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/set/.gradle/7.1/executionHistory/executionHistory.bin -------------------------------------------------------------------------------- /Data-Structure-Implementation/set/.gradle/7.1/executionHistory/executionHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/set/.gradle/7.1/executionHistory/executionHistory.lock -------------------------------------------------------------------------------- /Data-Structure-Implementation/set/.gradle/7.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/set/.gradle/7.1/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/set/.gradle/7.1/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /Data-Structure-Implementation/set/.gradle/7.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/set/.gradle/7.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /Data-Structure-Implementation/set/.gradle/7.1/gc.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/set/.gradle/7.1/gc.properties -------------------------------------------------------------------------------- /Data-Structure-Implementation/set/.gradle/buildOutputCleanup/buildOutputCleanup.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/set/.gradle/buildOutputCleanup/buildOutputCleanup.lock -------------------------------------------------------------------------------- /Data-Structure-Implementation/set/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Tue Mar 08 01:04:26 KST 2022 2 | gradle.version=7.1 3 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/set/.gradle/buildOutputCleanup/outputFiles.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/set/.gradle/buildOutputCleanup/outputFiles.bin -------------------------------------------------------------------------------- /Data-Structure-Implementation/set/.gradle/checksums/checksums.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/set/.gradle/checksums/checksums.lock -------------------------------------------------------------------------------- /Data-Structure-Implementation/set/.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/set/.gradle/vcs-1/gc.properties -------------------------------------------------------------------------------- /Data-Structure-Implementation/set/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Datasource local storage ignored files 5 | /dataSources/ 6 | /dataSources.local.xml 7 | # Editor-based HTTP Client requests 8 | /httpRequests/ 9 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/set/.idea/.name: -------------------------------------------------------------------------------- 1 | SetJava -------------------------------------------------------------------------------- /Data-Structure-Implementation/set/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/set/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 16 | 17 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/set/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 14 | 15 | 19 | 20 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/set/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 10 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/set/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/set/.idea/sonarIssues.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | 19 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/set/.idea/sonarlint/issuestore/7/6/76c06f73d639a669967ca8d29a3d111f35a724c0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/set/.idea/sonarlint/issuestore/7/6/76c06f73d639a669967ca8d29a3d111f35a724c0 -------------------------------------------------------------------------------- /Data-Structure-Implementation/set/.idea/sonarlint/issuestore/f/0/f07866736216be0ee2aba49e392191aeae700a35: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/set/.idea/sonarlint/issuestore/f/0/f07866736216be0ee2aba49e392191aeae700a35 -------------------------------------------------------------------------------- /Data-Structure-Implementation/set/.idea/sonarlint/issuestore/index.pb: -------------------------------------------------------------------------------- 1 | 2 | < 3 | build.gradle,f/0/f07866736216be0ee2aba49e392191aeae700a35 4 | ^ 5 | .src/main/java/com/project/setJava/SetDemo.java,7/6/76c06f73d639a669967ca8d29a3d111f35a724c0 -------------------------------------------------------------------------------- /Data-Structure-Implementation/set/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/set/build.gradle: -------------------------------------------------------------------------------- 1 | plugins { 2 | id 'java' 3 | } 4 | 5 | group 'org.example' 6 | version '1.0-SNAPSHOT' 7 | 8 | repositories { 9 | mavenCentral() 10 | } 11 | 12 | dependencies { 13 | testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0' 14 | testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0' 15 | } 16 | 17 | test { 18 | useJUnitPlatform() 19 | } -------------------------------------------------------------------------------- /Data-Structure-Implementation/set/build/classes/java/main/com/project/setJava/SetDemo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/set/build/classes/java/main/com/project/setJava/SetDemo.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/set/build/tmp/compileJava/previous-compilation-data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/set/build/tmp/compileJava/previous-compilation-data.bin -------------------------------------------------------------------------------- /Data-Structure-Implementation/set/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/set/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Data-Structure-Implementation/set/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.1-bin.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/set/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'SetJava' 2 | 3 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/stack/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/stack/.DS_Store -------------------------------------------------------------------------------- /Data-Structure-Implementation/stack/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/stack/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/stack/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/stack/implementation/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/stack/implementation/.DS_Store -------------------------------------------------------------------------------- /Data-Structure-Implementation/stack/implementation/.gradle/7.1/dependencies-accessors/dependencies-accessors.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/stack/implementation/.gradle/7.1/dependencies-accessors/dependencies-accessors.lock -------------------------------------------------------------------------------- /Data-Structure-Implementation/stack/implementation/.gradle/7.1/dependencies-accessors/gc.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/stack/implementation/.gradle/7.1/dependencies-accessors/gc.properties -------------------------------------------------------------------------------- /Data-Structure-Implementation/stack/implementation/.gradle/7.1/executionHistory/executionHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/stack/implementation/.gradle/7.1/executionHistory/executionHistory.bin -------------------------------------------------------------------------------- /Data-Structure-Implementation/stack/implementation/.gradle/7.1/executionHistory/executionHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/stack/implementation/.gradle/7.1/executionHistory/executionHistory.lock -------------------------------------------------------------------------------- /Data-Structure-Implementation/stack/implementation/.gradle/7.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/stack/implementation/.gradle/7.1/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/stack/implementation/.gradle/7.1/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /Data-Structure-Implementation/stack/implementation/.gradle/7.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/stack/implementation/.gradle/7.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /Data-Structure-Implementation/stack/implementation/.gradle/7.1/gc.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/stack/implementation/.gradle/7.1/gc.properties -------------------------------------------------------------------------------- /Data-Structure-Implementation/stack/implementation/.gradle/buildOutputCleanup/buildOutputCleanup.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/stack/implementation/.gradle/buildOutputCleanup/buildOutputCleanup.lock -------------------------------------------------------------------------------- /Data-Structure-Implementation/stack/implementation/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Thu Feb 10 00:15:26 KST 2022 2 | gradle.version=7.1 3 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/stack/implementation/.gradle/buildOutputCleanup/outputFiles.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/stack/implementation/.gradle/buildOutputCleanup/outputFiles.bin -------------------------------------------------------------------------------- /Data-Structure-Implementation/stack/implementation/.gradle/checksums/checksums.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/stack/implementation/.gradle/checksums/checksums.lock -------------------------------------------------------------------------------- /Data-Structure-Implementation/stack/implementation/.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/stack/implementation/.gradle/vcs-1/gc.properties -------------------------------------------------------------------------------- /Data-Structure-Implementation/stack/implementation/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/stack/implementation/.idea/.name: -------------------------------------------------------------------------------- 1 | StackSample -------------------------------------------------------------------------------- /Data-Structure-Implementation/stack/implementation/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/stack/implementation/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 16 | 17 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/stack/implementation/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 14 | 15 | 19 | 20 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/stack/implementation/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 10 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/stack/implementation/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/stack/implementation/.idea/sonarlint/issuestore/6/9/696c20595c38bd4959c8f6dd51e77c312c8c3027: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/stack/implementation/.idea/sonarlint/issuestore/6/9/696c20595c38bd4959c8f6dd51e77c312c8c3027 -------------------------------------------------------------------------------- /Data-Structure-Implementation/stack/implementation/.idea/sonarlint/issuestore/b/4/b4d388a408fff2c3f0222cdfac405d4d44df38d2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/stack/implementation/.idea/sonarlint/issuestore/b/4/b4d388a408fff2c3f0222cdfac405d4d44df38d2 -------------------------------------------------------------------------------- /Data-Structure-Implementation/stack/implementation/.idea/sonarlint/issuestore/f/0/f07866736216be0ee2aba49e392191aeae700a35: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/stack/implementation/.idea/sonarlint/issuestore/f/0/f07866736216be0ee2aba49e392191aeae700a35 -------------------------------------------------------------------------------- /Data-Structure-Implementation/stack/implementation/.idea/sonarlint/issuestore/index.pb: -------------------------------------------------------------------------------- 1 | 2 | < 3 | build.gradle,f/0/f07866736216be0ee2aba49e392191aeae700a35 4 | \ 5 | ,src/main/java/com/stackimp/pro/MainPoly.java,b/4/b4d388a408fff2c3f0222cdfac405d4d44df38d2 6 | Y 7 | )src/main/java/com/stackimp/pro/Stack.java,6/9/696c20595c38bd4959c8f6dd51e77c312c8c3027 -------------------------------------------------------------------------------- /Data-Structure-Implementation/stack/implementation/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/stack/implementation/build.gradle: -------------------------------------------------------------------------------- 1 | plugins { 2 | id 'java' 3 | } 4 | 5 | group 'org.example' 6 | version '1.0-SNAPSHOT' 7 | 8 | repositories { 9 | mavenCentral() 10 | } 11 | 12 | dependencies { 13 | testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0' 14 | testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0' 15 | } 16 | 17 | test { 18 | useJUnitPlatform() 19 | } -------------------------------------------------------------------------------- /Data-Structure-Implementation/stack/implementation/build/classes/java/main/com/stackimp/pro/MainPoly.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/stack/implementation/build/classes/java/main/com/stackimp/pro/MainPoly.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/stack/implementation/build/classes/java/main/com/stackimp/pro/Stack.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/stack/implementation/build/classes/java/main/com/stackimp/pro/Stack.class -------------------------------------------------------------------------------- /Data-Structure-Implementation/stack/implementation/build/tmp/compileJava/previous-compilation-data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/stack/implementation/build/tmp/compileJava/previous-compilation-data.bin -------------------------------------------------------------------------------- /Data-Structure-Implementation/stack/implementation/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Data-Structure-Implementation/stack/implementation/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Data-Structure-Implementation/stack/implementation/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.1-bin.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/stack/implementation/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'StackSample' 2 | 3 | -------------------------------------------------------------------------------- /Data-Structure-Implementation/stack/implementation/src/main/java/com/stackimp/pro/MainPoly.java: -------------------------------------------------------------------------------- 1 | package com.stackimp.pro; 2 | 3 | /** 4 | * @Company: {} 5 | * @Author: {urunov} 6 | * @Project: {StackSample} 7 | * @Date: {2022/03/09 && 7:51 PM} 8 | */ 9 | public class MainPoly { 10 | public static void main(String[] args) { 11 | // 12 | Stack stack = new Stack(); 13 | stack.push(10); 14 | stack.push(29); 15 | stack.push(33); 16 | stack.push(101); 17 | stack.push(-101); 18 | 19 | System.out.println("Total " + stack.count()); 20 | System.out.println("POP: " + stack.pop()); 21 | System.out.println("Empty: " + stack.isEmpty()); 22 | System.out.println("isFull: " + stack.isFull()); 23 | System.out.println("is peek:"+stack.peek()); 24 | System.out.println("count: " + stack.count()); 25 | // System.out.println("change: " + stack.change()); 26 | stack.display(); 27 | 28 | 29 | 30 | 31 | 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /DataStructure/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/DataStructure/.DS_Store -------------------------------------------------------------------------------- /DataStructure/Queue/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/DataStructure/Queue/.DS_Store -------------------------------------------------------------------------------- /DataStructure/Queue/Queue_Array/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Datasource local storage ignored files 5 | /dataSources/ 6 | /dataSources.local.xml 7 | # Editor-based HTTP Client requests 8 | /httpRequests/ 9 | -------------------------------------------------------------------------------- /DataStructure/Queue/Queue_Array/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DataStructure/Queue/Queue_Array/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /DataStructure/Queue/Queue_Array/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DataStructure/Queue/Queue_Array/Queue_Array.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /DataStructure/Queue/Queue_Array/out/production/Queue_Array/Queue_Array.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/DataStructure/Queue/Queue_Array/out/production/Queue_Array/Queue_Array.class -------------------------------------------------------------------------------- /DataStructure/Search_in_BST/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Datasource local storage ignored files 5 | /dataSources/ 6 | /dataSources.local.xml 7 | # Editor-based HTTP Client requests 8 | /httpRequests/ 9 | -------------------------------------------------------------------------------- /DataStructure/Search_in_BST/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DataStructure/Search_in_BST/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /DataStructure/Search_in_BST/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DataStructure/Search_in_BST/Search_in_BST.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /DataStructure/Search_in_BST/out/production/Search_in_BST/SearchInBST$Node.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/DataStructure/Search_in_BST/out/production/Search_in_BST/SearchInBST$Node.class -------------------------------------------------------------------------------- /DataStructure/Search_in_BST/out/production/Search_in_BST/SearchInBST.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/DataStructure/Search_in_BST/out/production/Search_in_BST/SearchInBST.class -------------------------------------------------------------------------------- /DataStructure/Stack_Array/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Datasource local storage ignored files 5 | /dataSources/ 6 | /dataSources.local.xml 7 | # Editor-based HTTP Client requests 8 | /httpRequests/ 9 | -------------------------------------------------------------------------------- /DataStructure/Stack_Array/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DataStructure/Stack_Array/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /DataStructure/Stack_Array/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DataStructure/Stack_Array/Stack_Array.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /DataStructure/Stack_Array/out/production/Stack_Array/Stack_Array.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/DataStructure/Stack_Array/out/production/Stack_Array/Stack_Array.class -------------------------------------------------------------------------------- /DataStructure/Stack_LinkList/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Datasource local storage ignored files 5 | /dataSources/ 6 | /dataSources.local.xml 7 | # Editor-based HTTP Client requests 8 | /httpRequests/ 9 | -------------------------------------------------------------------------------- /DataStructure/Stack_LinkList/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DataStructure/Stack_LinkList/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /DataStructure/Stack_LinkList/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DataStructure/Stack_LinkList/Stack_LinkList.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /DataStructure/Stack_LinkList/out/production/Stack_LinkList/Stack_LinkList$Node.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/DataStructure/Stack_LinkList/out/production/Stack_LinkList/Stack_LinkList$Node.class -------------------------------------------------------------------------------- /DataStructure/Stack_LinkList/out/production/Stack_LinkList/Stack_LinkList.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/DataStructure/Stack_LinkList/out/production/Stack_LinkList/Stack_LinkList.class -------------------------------------------------------------------------------- /DataStructure/Stack_LinkList/out/production/Stack_LinkList/Stack_main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/DataStructure/Stack_LinkList/out/production/Stack_LinkList/Stack_main.class -------------------------------------------------------------------------------- /DataStructure/Tree_BST/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Datasource local storage ignored files 5 | /dataSources/ 6 | /dataSources.local.xml 7 | # Editor-based HTTP Client requests 8 | /httpRequests/ 9 | -------------------------------------------------------------------------------- /DataStructure/Tree_BST/.idea/.name: -------------------------------------------------------------------------------- 1 | Tree_Implementation -------------------------------------------------------------------------------- /DataStructure/Tree_BST/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DataStructure/Tree_BST/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /DataStructure/Tree_BST/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DataStructure/Tree_BST/Tree_Implementation.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /DataStructure/Tree_BST/out/production/Tree_Implementation/BTS_Number.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/DataStructure/Tree_BST/out/production/Tree_Implementation/BTS_Number.class -------------------------------------------------------------------------------- /GenericType/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/GenericType/.DS_Store -------------------------------------------------------------------------------- /GenericType/TypeParameter/.gradle/7.1/dependencies-accessors/dependencies-accessors.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/GenericType/TypeParameter/.gradle/7.1/dependencies-accessors/dependencies-accessors.lock -------------------------------------------------------------------------------- /GenericType/TypeParameter/.gradle/7.1/dependencies-accessors/gc.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/GenericType/TypeParameter/.gradle/7.1/dependencies-accessors/gc.properties -------------------------------------------------------------------------------- /GenericType/TypeParameter/.gradle/7.1/executionHistory/executionHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/GenericType/TypeParameter/.gradle/7.1/executionHistory/executionHistory.bin -------------------------------------------------------------------------------- /GenericType/TypeParameter/.gradle/7.1/executionHistory/executionHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/GenericType/TypeParameter/.gradle/7.1/executionHistory/executionHistory.lock -------------------------------------------------------------------------------- /GenericType/TypeParameter/.gradle/7.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GenericType/TypeParameter/.gradle/7.1/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/GenericType/TypeParameter/.gradle/7.1/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /GenericType/TypeParameter/.gradle/7.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/GenericType/TypeParameter/.gradle/7.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /GenericType/TypeParameter/.gradle/7.1/gc.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/GenericType/TypeParameter/.gradle/7.1/gc.properties -------------------------------------------------------------------------------- /GenericType/TypeParameter/.gradle/buildOutputCleanup/buildOutputCleanup.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/GenericType/TypeParameter/.gradle/buildOutputCleanup/buildOutputCleanup.lock -------------------------------------------------------------------------------- /GenericType/TypeParameter/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Sat Mar 12 16:31:24 KST 2022 2 | gradle.version=7.1 3 | -------------------------------------------------------------------------------- /GenericType/TypeParameter/.gradle/buildOutputCleanup/outputFiles.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/GenericType/TypeParameter/.gradle/buildOutputCleanup/outputFiles.bin -------------------------------------------------------------------------------- /GenericType/TypeParameter/.gradle/checksums/checksums.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/GenericType/TypeParameter/.gradle/checksums/checksums.lock -------------------------------------------------------------------------------- /GenericType/TypeParameter/.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/GenericType/TypeParameter/.gradle/vcs-1/gc.properties -------------------------------------------------------------------------------- /GenericType/TypeParameter/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Datasource local storage ignored files 5 | /dataSources/ 6 | /dataSources.local.xml 7 | # Editor-based HTTP Client requests 8 | /httpRequests/ 9 | -------------------------------------------------------------------------------- /GenericType/TypeParameter/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /GenericType/TypeParameter/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 17 | 18 | -------------------------------------------------------------------------------- /GenericType/TypeParameter/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 14 | 15 | 19 | 20 | -------------------------------------------------------------------------------- /GenericType/TypeParameter/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 13 | -------------------------------------------------------------------------------- /GenericType/TypeParameter/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | -------------------------------------------------------------------------------- /GenericType/TypeParameter/.idea/sonarlint/issuestore/3/f/3f0441439b72c92bf39d909ebf3c2d6a80560cbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/GenericType/TypeParameter/.idea/sonarlint/issuestore/3/f/3f0441439b72c92bf39d909ebf3c2d6a80560cbd -------------------------------------------------------------------------------- /GenericType/TypeParameter/.idea/sonarlint/issuestore/4/7/47f64cc0dd6a1a80685baafcafbc2c66c4f2db17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/GenericType/TypeParameter/.idea/sonarlint/issuestore/4/7/47f64cc0dd6a1a80685baafcafbc2c66c4f2db17 -------------------------------------------------------------------------------- /GenericType/TypeParameter/.idea/sonarlint/issuestore/6/5/6505b229359334053c4a1aa6d81d674e214b0d11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/GenericType/TypeParameter/.idea/sonarlint/issuestore/6/5/6505b229359334053c4a1aa6d81d674e214b0d11 -------------------------------------------------------------------------------- /GenericType/TypeParameter/.idea/sonarlint/issuestore/8/a/8a81230380802d22d123f4c1612b76fafa19a44b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/GenericType/TypeParameter/.idea/sonarlint/issuestore/8/a/8a81230380802d22d123f4c1612b76fafa19a44b -------------------------------------------------------------------------------- /GenericType/TypeParameter/.idea/sonarlint/issuestore/c/9/c9af3604df605340da7808a7f09b7167db770fc0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/GenericType/TypeParameter/.idea/sonarlint/issuestore/c/9/c9af3604df605340da7808a7f09b7167db770fc0 -------------------------------------------------------------------------------- /GenericType/TypeParameter/.idea/sonarlint/issuestore/e/c/eca1ef6c4b70a3f4a96085a8a5f96583b160b4ab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/GenericType/TypeParameter/.idea/sonarlint/issuestore/e/c/eca1ef6c4b70a3f4a96085a8a5f96583b160b4ab -------------------------------------------------------------------------------- /GenericType/TypeParameter/.idea/sonarlint/issuestore/f/0/f07866736216be0ee2aba49e392191aeae700a35: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/GenericType/TypeParameter/.idea/sonarlint/issuestore/f/0/f07866736216be0ee2aba49e392191aeae700a35 -------------------------------------------------------------------------------- /GenericType/TypeParameter/.idea/sonarlint/issuestore/index.pb: -------------------------------------------------------------------------------- 1 | 2 | < 3 | build.gradle,f/0/f07866736216be0ee2aba49e392191aeae700a35 4 | ` 5 | 0src/main/java/com/generic/project/DataTypes.java,6/5/6505b229359334053c4a1aa6d81d674e214b0d11 6 | i 7 | 9src/main/java/com/generic/project/GenericMethodTesty.java,8/a/8a81230380802d22d123f4c1612b76fafa19a44b 8 | d 9 | 4src/main/java/com/generic/implementation/Animal.java,c/9/c9af3604df605340da7808a7f09b7167db770fc0 10 | a 11 | 1src/main/java/com/generic/implementation/Cat.java,e/c/eca1ef6c4b70a3f4a96085a8a5f96583b160b4ab 12 | f 13 | 6src/main/java/com/generic/implementation/Printers.java,4/7/47f64cc0dd6a1a80685baafcafbc2c66c4f2db17 14 | m 15 | =src/main/java/com/generic/implementation/GenericsExample.java,3/f/3f0441439b72c92bf39d909ebf3c2d6a80560cbd -------------------------------------------------------------------------------- /GenericType/TypeParameter/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /GenericType/TypeParameter/build.gradle: -------------------------------------------------------------------------------- 1 | plugins { 2 | id 'java' 3 | } 4 | 5 | group 'org.example' 6 | version '1.0-SNAPSHOT' 7 | 8 | repositories { 9 | mavenCentral() 10 | } 11 | 12 | dependencies { 13 | testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0' 14 | testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0' 15 | } 16 | 17 | test { 18 | useJUnitPlatform() 19 | } -------------------------------------------------------------------------------- /GenericType/TypeParameter/build/classes/java/main/com/generic/implementation/Animal.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/GenericType/TypeParameter/build/classes/java/main/com/generic/implementation/Animal.class -------------------------------------------------------------------------------- /GenericType/TypeParameter/build/classes/java/main/com/generic/implementation/Cat.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/GenericType/TypeParameter/build/classes/java/main/com/generic/implementation/Cat.class -------------------------------------------------------------------------------- /GenericType/TypeParameter/build/classes/java/main/com/generic/implementation/GenericsExample.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/GenericType/TypeParameter/build/classes/java/main/com/generic/implementation/GenericsExample.class -------------------------------------------------------------------------------- /GenericType/TypeParameter/build/classes/java/main/com/generic/implementation/Printers.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/GenericType/TypeParameter/build/classes/java/main/com/generic/implementation/Printers.class -------------------------------------------------------------------------------- /GenericType/TypeParameter/build/classes/java/main/com/generic/project/DataTypes.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/GenericType/TypeParameter/build/classes/java/main/com/generic/project/DataTypes.class -------------------------------------------------------------------------------- /GenericType/TypeParameter/build/classes/java/main/com/generic/project/GenericMethodTesty.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/GenericType/TypeParameter/build/classes/java/main/com/generic/project/GenericMethodTesty.class -------------------------------------------------------------------------------- /GenericType/TypeParameter/build/tmp/compileJava/previous-compilation-data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/GenericType/TypeParameter/build/tmp/compileJava/previous-compilation-data.bin -------------------------------------------------------------------------------- /GenericType/TypeParameter/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/GenericType/TypeParameter/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /GenericType/TypeParameter/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.1-bin.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /GenericType/TypeParameter/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'TypeParameter' 2 | 3 | -------------------------------------------------------------------------------- /GenericType/TypeParameter/src/main/java/com/generic/implementation/Animal.java: -------------------------------------------------------------------------------- 1 | package com.generic.implementation; 2 | 3 | /** 4 | * @Company: {} 5 | * @Author: {urunov} 6 | * @Project: {TypeParameter} 7 | * @Date: {2022/03/14 && 7:12 PM} 8 | */ 9 | public abstract class Animal { 10 | // 11 | String name; 12 | } 13 | 14 | -------------------------------------------------------------------------------- /GenericType/TypeParameter/src/main/java/com/generic/implementation/Cat.java: -------------------------------------------------------------------------------- 1 | package com.generic.implementation; 2 | 3 | /** 4 | * @Company: {} 5 | * @Author: {urunov} 6 | * @Project: {TypeParameter} 7 | * @Date: {2022/03/14 && 7:10 PM} 8 | */ 9 | public class Cat extends Animal{ 10 | // 11 | private String litterPreference; 12 | 13 | 14 | public Cat(String name) { 15 | this.name = name; 16 | } 17 | 18 | public String getLitterPreference(){ 19 | return litterPreference; 20 | } 21 | 22 | public void setLitterPreference(String litterPreference){ 23 | 24 | try { 25 | this.litterPreference = litterPreference; 26 | }catch (Exception e){ 27 | System.out.println(" " + e); 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /GenericType/TypeParameter/src/main/java/com/generic/implementation/GenericsExample.java: -------------------------------------------------------------------------------- 1 | package com.generic.implementation; 2 | 3 | import java.util.ArrayList; 4 | 5 | /** 6 | * @Company: {} 7 | * @Author: {urunov} 8 | * @Project: {TypeParameter} 9 | * @Date: {2022/03/14 && 1:02 PM} 10 | */ 11 | public class GenericsExample { 12 | public static void main(String[] args) { 13 | 14 | Printers printer = new Printers<>(23); 15 | printer.print(); 16 | 17 | Printers printers = new Printers<>(454.4); 18 | printers.print(); 19 | 20 | Printers str = new Printers<>("Mashina "); 21 | str.print(); 22 | 23 | ArrayList cats = new ArrayList<>(); 24 | cats.add(new Cat("Kate")); 25 | Cat my = (Cat) cats.get(0); 26 | 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /GenericType/TypeParameter/src/main/java/com/generic/implementation/Printers.java: -------------------------------------------------------------------------------- 1 | package com.generic.implementation; 2 | 3 | /** 4 | * @Company: {} 5 | * @Author: {urunov} 6 | * @Project: {TypeParameter} 7 | * @Date: {2022/03/14 && 1:02 PM} 8 | */ 9 | public class Printers { 10 | 11 | T thingsToPrint; 12 | 13 | public Printers(T thingsToPrint) { 14 | this.thingsToPrint = thingsToPrint; 15 | } 16 | 17 | public void print(){ 18 | System.out.println(thingsToPrint); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /GenericType/TypeParameter/src/main/java/com/generic/project/DataTypes.java: -------------------------------------------------------------------------------- 1 | package com.generic.project; 2 | 3 | import javax.xml.crypto.Data; 4 | 5 | /** 6 | * @Company: {} 7 | * @Author: {urunov} 8 | * @Project: {TypeParameter} 9 | * @Date: {2022/03/12 && 4:32 PM} 10 | */ 11 | public class DataTypes { 12 | 13 | T data; 14 | 15 | public DataTypes(T data) { 16 | this.data = data; 17 | } 18 | 19 | public T getData() { 20 | return data; 21 | } 22 | 23 | public T getObject() { 24 | return this.data; 25 | } 26 | 27 | 28 | 29 | public static void main(String[] args) { 30 | DataTypes dataTypes = new DataTypes<>(3); 31 | System.out.println(dataTypes); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /Lambda/LambdaSimple/.gradle/7.1/dependencies-accessors/dependencies-accessors.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Lambda/LambdaSimple/.gradle/7.1/dependencies-accessors/dependencies-accessors.lock -------------------------------------------------------------------------------- /Lambda/LambdaSimple/.gradle/7.1/dependencies-accessors/gc.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Lambda/LambdaSimple/.gradle/7.1/dependencies-accessors/gc.properties -------------------------------------------------------------------------------- /Lambda/LambdaSimple/.gradle/7.1/executionHistory/executionHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Lambda/LambdaSimple/.gradle/7.1/executionHistory/executionHistory.bin -------------------------------------------------------------------------------- /Lambda/LambdaSimple/.gradle/7.1/executionHistory/executionHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Lambda/LambdaSimple/.gradle/7.1/executionHistory/executionHistory.lock -------------------------------------------------------------------------------- /Lambda/LambdaSimple/.gradle/7.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lambda/LambdaSimple/.gradle/7.1/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Lambda/LambdaSimple/.gradle/7.1/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /Lambda/LambdaSimple/.gradle/7.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Lambda/LambdaSimple/.gradle/7.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /Lambda/LambdaSimple/.gradle/7.1/gc.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Lambda/LambdaSimple/.gradle/7.1/gc.properties -------------------------------------------------------------------------------- /Lambda/LambdaSimple/.gradle/buildOutputCleanup/buildOutputCleanup.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Lambda/LambdaSimple/.gradle/buildOutputCleanup/buildOutputCleanup.lock -------------------------------------------------------------------------------- /Lambda/LambdaSimple/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Tue Mar 15 20:50:42 KST 2022 2 | gradle.version=7.1 3 | -------------------------------------------------------------------------------- /Lambda/LambdaSimple/.gradle/buildOutputCleanup/outputFiles.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Lambda/LambdaSimple/.gradle/buildOutputCleanup/outputFiles.bin -------------------------------------------------------------------------------- /Lambda/LambdaSimple/.gradle/checksums/checksums.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Lambda/LambdaSimple/.gradle/checksums/checksums.lock -------------------------------------------------------------------------------- /Lambda/LambdaSimple/.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Lambda/LambdaSimple/.gradle/vcs-1/gc.properties -------------------------------------------------------------------------------- /Lambda/LambdaSimple/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Lambda/LambdaSimple/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16 | 17 | -------------------------------------------------------------------------------- /Lambda/LambdaSimple/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 14 | 15 | 19 | 20 | -------------------------------------------------------------------------------- /Lambda/LambdaSimple/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 13 | -------------------------------------------------------------------------------- /Lambda/LambdaSimple/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | -------------------------------------------------------------------------------- /Lambda/LambdaSimple/.idea/sonarlint/issuestore/1/1/11818af2cf98d0a3c4abfbc9c0142ec9519fd4c8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Lambda/LambdaSimple/.idea/sonarlint/issuestore/1/1/11818af2cf98d0a3c4abfbc9c0142ec9519fd4c8 -------------------------------------------------------------------------------- /Lambda/LambdaSimple/.idea/sonarlint/issuestore/7/2/7229711f707c1d3dff3852ae561d98bbc287f3d9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Lambda/LambdaSimple/.idea/sonarlint/issuestore/7/2/7229711f707c1d3dff3852ae561d98bbc287f3d9 -------------------------------------------------------------------------------- /Lambda/LambdaSimple/.idea/sonarlint/issuestore/a/c/ac04b73c5368fa537000eb487a386d555bc74262: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Lambda/LambdaSimple/.idea/sonarlint/issuestore/a/c/ac04b73c5368fa537000eb487a386d555bc74262 -------------------------------------------------------------------------------- /Lambda/LambdaSimple/.idea/sonarlint/issuestore/b/b/bb82160d1a34f3b43b8cb87409239608d762fffb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Lambda/LambdaSimple/.idea/sonarlint/issuestore/b/b/bb82160d1a34f3b43b8cb87409239608d762fffb -------------------------------------------------------------------------------- /Lambda/LambdaSimple/.idea/sonarlint/issuestore/c/0/c0191d4186398e91d236febc170543e8114835a5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Lambda/LambdaSimple/.idea/sonarlint/issuestore/c/0/c0191d4186398e91d236febc170543e8114835a5 -------------------------------------------------------------------------------- /Lambda/LambdaSimple/.idea/sonarlint/issuestore/d/5/d52f134ccef380e1c2cb5ce4c94033a64ad3ec78: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Lambda/LambdaSimple/.idea/sonarlint/issuestore/d/5/d52f134ccef380e1c2cb5ce4c94033a64ad3ec78 -------------------------------------------------------------------------------- /Lambda/LambdaSimple/.idea/sonarlint/issuestore/f/0/f07866736216be0ee2aba49e392191aeae700a35: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Lambda/LambdaSimple/.idea/sonarlint/issuestore/f/0/f07866736216be0ee2aba49e392191aeae700a35 -------------------------------------------------------------------------------- /Lambda/LambdaSimple/.idea/sonarlint/issuestore/index.pb: -------------------------------------------------------------------------------- 1 | 2 | < 3 | build.gradle,f/0/f07866736216be0ee2aba49e392191aeae700a35 4 | ^ 5 | .src/main/java/com/lambda/sample/MainPolly.java,1/1/11818af2cf98d0a3c4abfbc9c0142ec9519fd4c8 6 | \ 7 | ,src/main/java/com/lambda/sample/Lambdas.java,a/c/ac04b73c5368fa537000eb487a386d555bc74262 8 | X 9 | (src/main/java/com/lambda/sample/Cat.java,7/2/7229711f707c1d3dff3852ae561d98bbc287f3d9 10 | ^ 11 | .src/main/java/com/lambda/sample/Printable.java,c/0/c0191d4186398e91d236febc170543e8114835a5 12 | f 13 | 6src/main/java/com/lambda/moreover/LambdaInterface.java,b/b/bb82160d1a34f3b43b8cb87409239608d762fffb 14 | _ 15 | /src/main/java/com/lambda/moreover/MainPoly.java,d/5/d52f134ccef380e1c2cb5ce4c94033a64ad3ec78 -------------------------------------------------------------------------------- /Lambda/LambdaSimple/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Lambda/LambdaSimple/build.gradle: -------------------------------------------------------------------------------- 1 | plugins { 2 | id 'java' 3 | } 4 | 5 | group 'org.example' 6 | version '1.0-SNAPSHOT' 7 | 8 | repositories { 9 | mavenCentral() 10 | } 11 | 12 | dependencies { 13 | testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0' 14 | testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0' 15 | } 16 | 17 | test { 18 | useJUnitPlatform() 19 | } -------------------------------------------------------------------------------- /Lambda/LambdaSimple/build/classes/java/main/com/lambda/moreover/LambdaInterface.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Lambda/LambdaSimple/build/classes/java/main/com/lambda/moreover/LambdaInterface.class -------------------------------------------------------------------------------- /Lambda/LambdaSimple/build/classes/java/main/com/lambda/moreover/MainPoly.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Lambda/LambdaSimple/build/classes/java/main/com/lambda/moreover/MainPoly.class -------------------------------------------------------------------------------- /Lambda/LambdaSimple/build/classes/java/main/com/lambda/sample/Cat.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Lambda/LambdaSimple/build/classes/java/main/com/lambda/sample/Cat.class -------------------------------------------------------------------------------- /Lambda/LambdaSimple/build/classes/java/main/com/lambda/sample/Lambdas.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Lambda/LambdaSimple/build/classes/java/main/com/lambda/sample/Lambdas.class -------------------------------------------------------------------------------- /Lambda/LambdaSimple/build/classes/java/main/com/lambda/sample/MainPolly.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Lambda/LambdaSimple/build/classes/java/main/com/lambda/sample/MainPolly.class -------------------------------------------------------------------------------- /Lambda/LambdaSimple/build/classes/java/main/com/lambda/sample/Printable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Lambda/LambdaSimple/build/classes/java/main/com/lambda/sample/Printable.class -------------------------------------------------------------------------------- /Lambda/LambdaSimple/build/tmp/compileJava/previous-compilation-data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Lambda/LambdaSimple/build/tmp/compileJava/previous-compilation-data.bin -------------------------------------------------------------------------------- /Lambda/LambdaSimple/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/Lambda/LambdaSimple/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Lambda/LambdaSimple/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.1-bin.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /Lambda/LambdaSimple/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'LambdaSimple' 2 | 3 | -------------------------------------------------------------------------------- /Lambda/LambdaSimple/src/main/java/com/lambda/moreover/LambdaInterface.java: -------------------------------------------------------------------------------- 1 | package com.lambda.moreover; 2 | 3 | /** 4 | * @Company: {} 5 | * @Author: {urunov} 6 | * @Project: {LambdaSimple} 7 | * @Date: {2022/03/15 && 9:44 PM} 8 | */ 9 | public interface LambdaInterface { 10 | 11 | void message(String name, char symbol); 12 | } 13 | -------------------------------------------------------------------------------- /Lambda/LambdaSimple/src/main/java/com/lambda/moreover/MainPoly.java: -------------------------------------------------------------------------------- 1 | package com.lambda.moreover; 2 | 3 | /** 4 | * @Company: {} 5 | * @Author: {urunov} 6 | * @Project: {LambdaSimple} 7 | * @Date: {2022/03/15 && 9:44 PM} 8 | */ 9 | public class MainPoly implements LambdaInterface{ 10 | public static void main(String[] args) { 11 | String name = "Bro"; 12 | char symbol = '!'; 13 | LambdaInterface lambdaInterface =(x, y) -> { 14 | System.out.print("Heloo"); 15 | System.out.println(" " + x + y); 16 | }; 17 | lambdaInterface.message(name, symbol); 18 | 19 | } 20 | @Override 21 | public void message(String name, char symbol) { 22 | System.out.println("My"); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /Lambda/LambdaSimple/src/main/java/com/lambda/sample/Cat.java: -------------------------------------------------------------------------------- 1 | package com.lambda.sample; 2 | 3 | /** 4 | * @Company: {} 5 | * @Author: {urunov} 6 | * @Project: {LambdaSimple} 7 | * @Date: {2022/03/15 && 8:51 PM} 8 | */ 9 | public class Cat implements Printable{ 10 | // 11 | public String name; 12 | public int age; 13 | 14 | public Cat() { 15 | } 16 | 17 | 18 | 19 | @Override 20 | public void print(String perfix, String suffix) { 21 | System.out.println("Myow"); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Lambda/LambdaSimple/src/main/java/com/lambda/sample/Lambdas.java: -------------------------------------------------------------------------------- 1 | package com.lambda.sample; 2 | 3 | /** 4 | * @Company: {} 5 | * @Author: {urunov} 6 | * @Project: {LambdaSimple} 7 | * @Date: {2022/03/15 && 8:56 PM} 8 | */ 9 | public class Lambdas { 10 | } 11 | -------------------------------------------------------------------------------- /Lambda/LambdaSimple/src/main/java/com/lambda/sample/MainPolly.java: -------------------------------------------------------------------------------- 1 | package com.lambda.sample; 2 | 3 | /** 4 | * @Company: {} 5 | * @Author: {urunov} 6 | * @Project: {LambdaSimple} 7 | * @Date: {2022/03/15 && 8:53 PM} 8 | */ 9 | public class MainPolly { 10 | public static void main(String[] args) { 11 | 12 | Cat myCat = new Cat(); 13 | // printThing(myCat); 14 | Printable lambdaPrintable = (perfix, suffix)->System.out.println("myow" + suffix); 15 | printThing(lambdaPrintable); 16 | } 17 | 18 | static void printThing(Printable things){ 19 | things.print("> ", "!"); 20 | } 21 | 22 | 23 | } 24 | -------------------------------------------------------------------------------- /Lambda/LambdaSimple/src/main/java/com/lambda/sample/Printable.java: -------------------------------------------------------------------------------- 1 | package com.lambda.sample; 2 | 3 | /** 4 | * @Company: {Nextree Inc.} 5 | * @Author: {urunov} 6 | * @Project: {LambdaSimple} 7 | * @Date: {2022/03/15 && 8:51 PM} 8 | */ 9 | @FunctionalInterface 10 | public interface Printable { 11 | 12 | void print(String perfix, String suffix); 13 | 14 | } 15 | -------------------------------------------------------------------------------- /Leetcode-Solutions: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /RoadMap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urunov/Data-Strucute-Algorithms/8a7e3fc4f786706a44e7c51f147561121426dd0c/RoadMap.jpg --------------------------------------------------------------------------------