Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/davecom/classiccomputerscienceproblemsinjava
Source Code for the Book Classic Computer Science Problems in Java
https://github.com/davecom/classiccomputerscienceproblemsinjava
book computer-science java manning
Last synced: 3 days ago
JSON representation
Source Code for the Book Classic Computer Science Problems in Java
- Host: GitHub
- URL: https://github.com/davecom/classiccomputerscienceproblemsinjava
- Owner: davecom
- License: apache-2.0
- Created: 2019-11-28T05:33:59.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-01-13T16:31:41.000Z (10 months ago)
- Last Synced: 2024-01-14T01:06:09.466Z (10 months ago)
- Topics: book, computer-science, java, manning
- Language: Java
- Homepage: https://www.manning.com/books/classic-computer-science-problems-in-java?a_aid=oaksnow&a_bid=6430148a
- Size: 190 KB
- Stars: 152
- Watchers: 12
- Forks: 78
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Classic Computer Science Problems in Java
This repository contains source code to accompany the book *Classic Computer Science Problems in Java* by David Kopec, [available from Manning](https://www.manning.com/books/classic-computer-science-problems-in-java?a_aid=oaksnow&a_bid=6430148a), [Amazon](https://amzn.to/2LkFICw), and other fine book sellers. You will find the source organized by chapter. **As you read the book, each code listing contains a file name that corresponds to a file in this repository.** The book was published in December, 2020.![Classic Computer Science Problems in Java Cover](cover.jpg)
## Conventions
The source code was written against version 11 of the Java language and should run on any known newer version at the time of publication. It makes use of no Java libraries beyond the standard library. It was developed in Eclipse and this folder can be opened as an Eclipse workspace. You can then right-click any file with a `main()` method and select "Run" to compile and execute it. All other popular Java IDEs can import Eclipse projects, but you can also easily create a project out of each chapter, which is bundled as a Java package. For directions importing Eclipse projects into IntelliJ see [this tutorial from Jetbrains.](https://www.jetbrains.com/help/idea/import-project-from-eclipse-page-1.html)## Questions about the Book
You can find general questions and descriptive information about the book on the [Classic Computer Science Problems](https://classicproblems.com/) website. Also, feel free to reach out to me on Twitter, [@davekopec](https://twitter.com/davekopec). If you think you found an error in the source code, please open an issue up here on GitHub.## License
All of the source code in this repository is released under the Apache License version 2.0. See `LICENSE`.## Other Books and Languages
Official Books from the Series by @davecom
- [Classic Computer Science Problems in Python](https://github.com/davecom/ClassicComputerScienceProblemsInPython)
- [Classic Computer Science Problems in Swift](https://github.com/davecom/ClassicComputerScienceProblemsInSwift)Ports
- [C++ implementation by @aray-andres](https://github.com/araya-andres/classic_computer_sci)
- [Go implementation by @arlima](https://github.com/arlima/problemas_classicos_CC)
- [PHP implementation by @SaschaKersken (German translator of CCSPiP)](https://github.com/SaschaKersken/ClassicComputerScienceProblemsInPhp)
- [JavaScript implementation by @SaschaKersken (German translator of CCSPiP)](https://github.com/SaschaKersken/ClassicComputerScienceProblemsInJavaScript)
- [Ruby implementation by @tj84](https://github.com/tj84/cs_problems)
- [Rust implementation by @marpetercontribs](https://github.com/marpetercontribs/classic-computer-science-problems-in-rust)