78
votes
29answers
7k views
Given a function which produces a random integer in the range 1 to 5, write a function which produces a random integer in the range 1 to 7
what is simple solution
what is effective solution to less minimum memory and(or) cpu speed?
54
votes
7answers
3k views
Bubble Sort Homework
In class we are doing sorting algorithms and, although I understand them fine when talking about them and writing pseudocode, I am having problems writing actual code for them.
This is my attempt in …
51
votes
23answers
12k views
How do I calculate someone’s age in C#?
Given a DateTime representing their birthday, how do I calculate someone's age?
24
votes
26answers
2k views
What is the purpose of null?
I am in a compilers class and we are tasked with creating our own language, from scratch. Currently our dilemma is whether to include a 'null' type or not. What purpose does null provide? Some of our …
22
votes
9answers
895 views
Array Homework Question
You are given an array with integers between 1 and 1,000,000. One integer is in the array twice. How can you determine which one? Can you think of a way to do it using little extra memory.
Algo:
…
22
votes
14answers
2k views
When does ++ not produce the same results as +1?
The following two C# code snippets produce different results (assuming the variable level is used both before and after the recursive call). Why?
public DoStuff(int level)
{
// ...
…
22
votes
26answers
3k views
Are Foreign Keys really necessary in a database design?
As far as I know, foreign keys are used to aid the programmer to manipulate data in the correct way. Suppose a programmer is actually doing this in the right manner already, then do we really need the …
18
votes
16answers
5k views
Why is quicksort better than mergesort?
I was asked this question during an interview. They're both O(nlogn) and yet most people use Quicksort instead of Mergesort. Why is that?
17
votes
20answers
6k views
How do I check if an integer is even or odd?
How best can I check if an integer is even or odd in C? I considered how I'd do this in Java, but I couldn't come up with an answer either. Thanks.
16
votes
23answers
5k views
Computer science final year project ideas
Hi,
I'm a Computer Science undergraduate student in UK and should be deciding the subject of my final year project soon. The school is pretty flexible with the subject...
"The topic can be any area …
15
votes
5answers
2k views
Big O Notation Homework--Code Fragment Algorithm Analysis?
For homework, I was given the following 8 code fragments to analyze and give a Big-Oh notation for the running time. Can anybody please tell me if I'm on the right track?
//Fragment 1
for(int i = …
14
votes
4answers
499 views
The while language
For my theory of computing languages class, we got a homework assignment to implement a piece of code in a language that only has while statements for flow control (no if statements). This is mainly …
14
votes
5answers
460 views
AI Game Opinion ( kinda homework related )
Hi !
I have taken an AI course , and the teacher asked us to implement a game that makes use of one of the AI algorithms . Here is where I need a bit of help
I don't know to what kind of games each …
12
votes
21answers
4k views
Array Vs. Linked List
I apologize--this question may be a bit open-ended but I think there are probably definite, quantifiable answers to it so I'll post it anyway.
A person I know is trying to learn C++ and software …
11
votes
9answers
490 views
3D modeling for programmers
Hi,
I'm studying Computer Graphics as part of my curriculum at my university. The course focuses on scene modeling, rather than rendering or other aspects of computer graphics. We're learning the …
