Tagged Questions

0
votes
5answers
149 views

Java Code Review: Merge sorted lists into a single sorted list

I want to merge sorted lists into a single list. How is this solution? I believe it runs in O(n) time. Any glaring flaws, inefficiencies, or stylistic issues? I don't really like …
6
votes
27answers
701 views

What are some techniques you use to remain active during the day while programming? [closed]

Possible Duplicates: How to exercise and feel well when you are programming What is the Best Exercise for Good Posture? We programmers have pretty cush jobs...sometimes …
1
vote
4answers
227 views

Interesting problem using printf & scanf only…

I'm running out of ideas for my "Beginning C" class, and the only topics I've discussed so far are Data types, Variables & the printf & scanf functions. My last quizzes in …
0
votes
2answers
216 views

The C programming language 2. ed. question

I'm reading the well known book "The C programming Language, 2nd edition" and there is one exercise that I'm stuck with. I can't figure out what exactly needs to be done, so I wou …
5
votes
9answers
307 views

Do you have any favorite ergonomic exercise or habit?

I've read somewhere that ergonomic problems accounts for 70% of injury... And i don't want to be one of those guys who think, ahh it's just a slight sore, and go on and discover th …
3
votes
9answers
251 views

Online Programming Exercises

What online programming exercises would you suggest? Hopefully a site where you can submit code instead of submitting output.
5
votes
17answers
2k views

What is the Best Exercise for Good Posture?

I sit in an office chair all day long. I try to keep good posture, but I find myself in any number of bad positions throughout the day. Is there any particular exercise that woul …
2
votes
8answers
672 views

Event-driven simulation class

I am working through some of the exercises in The C++ Programming Language by Bjarne Stroustrup. I am confused by problem 11 at the end of Chapter 12: (*5) Design and implement a …
4
votes
5answers
1k views

How do you match only valid roman numerals with a regular expression?

Thinking about my other problem, i decided I can't even create a regular expression that will match roman numerals (let alone a context-free grammar that will generate them) The p …
2
votes
6answers
223 views

Performance challenge: NAL Unit Wrapping

From what I've seen in the past, StackOverflow seems to like programming challenges, such as the fast char to string exercise problem which got dozens of responses. This is an opt …