https://github.com/solangeug/data-structures-and-software-design
A collection of projects specified in the PennEngineering Extension School's Data Structures and Software Design course.
https://github.com/solangeug/data-structures-and-software-design
data-structures java sd2x software-design
Last synced: 5 months ago
JSON representation
A collection of projects specified in the PennEngineering Extension School's Data Structures and Software Design course.
- Host: GitHub
- URL: https://github.com/solangeug/data-structures-and-software-design
- Owner: SolangeUG
- License: mit
- Created: 2018-02-19T08:40:43.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-03-08T13:28:44.000Z (almost 8 years ago)
- Last Synced: 2025-03-18T22:40:41.725Z (9 months ago)
- Topics: data-structures, java, sd2x, software-design
- Language: Java
- Size: 735 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Data Structures And Software Design
[](https://github.com/SolangeUG/data-structures-and-software-design/blob/master/LICENSE)
[](https://docs.oracle.com/en/java/)
[](http://www.uml.org/)
This is a collection of projects specified in the PennEngineering Extension School's [Data Structures and Software Design](https://www.edx.org/course/data-structures-software-design-pennx-sd2x) course.
## Languages - Libraries - Tools
- [Java SE 8](http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html)
- Any code/text editor ([atom](https://atom.io/)) or IDE ([IntelliJ](https://www.jetbrains.com/idea/download)) of your choice.
## Projects
1. [Linked Lists](https://github.com/SolangeUG/data-structures-and-software-design/tree/master/01-linked-lists)
2. [Queues and Stacks](https://github.com/SolangeUG/data-structures-and-software-design/tree/master/02-queues-and-stacks)
3. [Collections](https://github.com/SolangeUG/data-structures-and-software-design/tree/master/03-collections)
4. [Binary Search Trees](https://github.com/SolangeUG/data-structures-and-software-design/tree/master/04-binary-search-trees)
5. [TreeMaps and PriorityQueues](https://github.com/SolangeUG/data-structures-and-software-design/tree/master/05-treemaps-and-priority-queues)
6. [Graphs](https://github.com/SolangeUG/data-structures-and-software-design/tree/master/06-graphs)
7. [UML](https://github.com/SolangeUG/data-structures-and-software-design/tree/master/07-UML)
8. [Software Design](https://github.com/SolangeUG/data-structures-and-software-design/tree/master/08-software-design)
9. [Refactoring](https://github.com/SolangeUG/data-structures-and-software-design/tree/master/09-refactoring)
10. [Reliability](https://github.com/SolangeUG/data-structures-and-software-design/tree/master/10-reliability)
11. [Efficiency](https://github.com/SolangeUG/data-structures-and-software-design/tree/master/11-efficiency)
## Resources
- [Data Structures and Software Design](https://www.edx.org/course/data-structures-software-design-pennx-sd2x)
## License
[The MIT License (MIT)](https://opensource.org/licenses/MIT)
````
Copyright (c) 2018 PennX.
Copyright (c) 2018 Solange Umuhire Gasengayire.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
````