Interesting programming problems

AI Thread Summary
The discussion focuses on seeking challenging programming problems in Java to enhance algorithmic thinking and problem-solving skills. A user expresses the need for more complex exercises beyond basic textbook problems, particularly to prepare for tougher class questions. Recommendations include resources like Project Euler for mathematical problems, the book "Data Structures and Problem Solving Using Java" by Weiss for advanced exercises, and ideas for creating an arbitrary precision calculator with advanced functions. Additionally, TopCoder is suggested for tutorials and challenging projects, along with a link to a list of project ideas on DreamInCode. The emphasis is on learning through practice and developing personal coding skills rather than relying on existing code.
Aziza
Messages
189
Reaction score
1
I am taking a course on Java and i am looking for some interesting general programming problems i could solve with java. I've gone through two java books, but most of the exercises at the ends of the chapters are very straightforward, and I am looking for something more challenging. My professor always asks much more challenging questions in class and asks us to think of an algorithm to solve his problem and even though I've done all of the textbook exercises, i find it hard to think of efficient algorithms on the spot to these harder problems, so i would like some practice with that. does anyone know any good books or websites with collections of such problems and maybe also with descriptions of the algorithms that are usually used to solve them?
 
Technology news on Phys.org
"Data Structures and Problem Solving Using Java" by Weiss is probably meant as a second year text and has what might be some more challenging exercises.

One of those is a simple calculator. Perhaps you could extend that to make it an arbitrary precision calculator and incorporate some of the functions like greatest common denominator, least common multiple, Euler phi function, etc, the sort of functions that people experimenting with numbers and number theory might really like to have in a calculator. And you could make it an applet so it would download automatically and run using your computer's resources.

If you did a good job of coding that so it would be easy for others to understand and add more functions then this might be a resource that people who are interested in that sort of calculation would really value.

You can download code from the author's website, but since you are learning I would suggest that you perhaps not just use his code, but learn how to do it yourself.

The newest editions of the book are as expensive as any textbook, but the old edition I have can now be purchased for $4 delivered!
http://www.bestwebbuys.com/Data-Str...g-Using-Java-ISBN-9780201549911?isrc=b-search

Once you get it working you might ask people over in the math/number theory area if people would try it out and suggest more functions to put into it.
 
Thread 'Is this public key encryption?'
I've tried to intuit public key encryption but never quite managed. But this seems to wrap it up in a bow. This seems to be a very elegant way of transmitting a message publicly that only the sender and receiver can decipher. Is this how PKE works? No, it cant be. In the above case, the requester knows the target's "secret" key - because they have his ID, and therefore knows his birthdate.
I tried a web search "the loss of programming ", and found an article saying that all aspects of writing, developing, and testing software programs will one day all be handled through artificial intelligence. One must wonder then, who is responsible. WHO is responsible for any problems, bugs, deficiencies, or whatever malfunctions which the programs make their users endure? Things may work wrong however the "wrong" happens. AI needs to fix the problems for the users. Any way to...
Back
Top