kant
- 388
- 0
I am currently in my second quarter learning the c language. The class is not hard at all, but i want some challenge problems. Are there any goods links?
The discussion revolves around seeking programming challenges for learning the C language, with participants suggesting various types of problems and projects that could enhance skills in programming and algorithm development.
Participants present a variety of programming challenges and project ideas, but there is no clear consensus on a single best approach or challenge. Multiple competing views and suggestions remain throughout the discussion.
Some suggestions involve advanced concepts that may depend on prior knowledge or specific definitions, such as NP problems and recursion techniques. The feasibility of certain projects may also depend on the participant's current skill level and resources.
Individuals learning the C language, educators seeking challenge problems for students, and programmers looking for project ideas to enhance their skills.
Tide said:How about writing some extended (or infinite) precision numerical routines so you can calculate things like 10,000! etc.?
dduardo said:There are loads of problems you can find here:
http://acm.uva.es/problemset/
Hurkyl said:Searching a sorted list is an NP problem that has a solution that runs in O(log n) time. (Assuming a random access lookup counts as one unit of work)
(Yes, I know you meant NP-complete.)