Tagged Questions
Homework means the asker is requesting help with school homework. This lets potential answerers know that they should guide the student in solving the problem, rather than simply showing the complete answer.
220
votes
51answers
33k views
Expand a random range from 1-5 to 1-7
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 a simple solution?
What is an effective solution ...
114
votes
31answers
9k views
What are your programming exercises? [closed]
Do you have any programming "exercises" that you do in order to hone your programming skills? Anything from FizzBuzz to more complicated problems to get you thinking about real-life scenarios that ...
111
votes
9answers
81k views
Java - Convert String to enum
Say I have an enum which is just
public enum Blah {
A, B , C, D
}
and I would like to find the enum value of a string of for example "A" which would be Blah.A. How would it be possible to do ...
79
votes
7answers
7k 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 ...
61
votes
4answers
57k views
Trimming a string in Python
I need to write a function in python that gets a string-
If the first or last characters in the string are spaces, then they should be removed (both). If not than nothing should be done.
" Hello " ...
60
votes
8answers
22k views
What is Unit test, Integration Test, Smoke test, Regression Test?
What is Unit test, Integration Test, Smoke test, Regression Test and what are the differences between them? And Which tools can I use for each of them?
For example I use JUnit,NUnit for Unit testing ...
49
votes
26answers
7k views
Are foreign keys really necessary in a database design?
As far as I know, foreign keys (FK) 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 ...
48
votes
45answers
5k views
What are some exercises you do to make you a better programmer?
Lately, I have taken to programming without a mouse to force myself to become more comfortable with different shortcuts. It's been a good exercise as I feel using shortcuts is essential for ...
44
votes
4answers
63k views
44
votes
30answers
2k views
What are some of your most useful database standards?
I have some ideas, some that I have accumulated over time, but I really want to know what makes things go smoothly for you when modeling database:
Table name matches Primary Key name and description ...
43
votes
8answers
7k views
Is log(n!) = Θ(n·log(n))?
This is a homework question. I'm not expecting an answer, just some guidance, possibly :) I am to show that log(n!) = Θ(n·log(n)).
A hint was given that I should show the upper bound with nn and ...
41
votes
13answers
17k views
How do I capitalize first letter of first name and last name in C#?
Is there an easy way to capitalize the first letter of a string and lower the rest of it? Is there a built in method or do I need to make my own?
39
votes
20answers
34k 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.
35
votes
12answers
42k views
How do you detect where two line segments intersect? [closed]
How do I determine whether or not two lines intersect, and if they do, at what x,y point?
33
votes
13answers
2k views
How can I find a number which occurs an odd number of times in a SORTED array in O(n) time?
I have a question and I tried to think over it again and again... but got nothing so posting the question here. Maybe I could get some view-point of others, to try and make it work...
The question ...
33
votes
26answers
40k views
Computer science final year project ideas
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 of ...
33
votes
5answers
23k views
How to implement a queue using two stacks?
Suppose we have two stacks and no other temporary variable.
Is to possible to "construct" a queue data structure using only the two stacks?
32
votes
14answers
4k views
Recommend an algorithms exercise book? [closed]
I have a little book called Problems on Algorithms by Ian Parberry which is chock full of exercises related to the study of algorithms. Can anybody recommend similar books?
What I am not looking for ...
32
votes
25answers
3k 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 ...
32
votes
17answers
24k 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?
31
votes
24answers
26k 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 ...
30
votes
8answers
1k views
Space-efficient algorithm for finding the largest balanced subarray?
given an array of 0s and 1s, find maximum subarray such that number of zeros and 1s are equal.
This needs to be done in O(n) time and O(1) space.
I have an algo which does it in O(n) time and O(n) ...
30
votes
9answers
3k 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:
...
29
votes
8answers
1k views
Given an array, can I find in O(n) the longest range, whose endpoints are the greatest values in the range?
For a given array of integers, find the maximum distance between 2 points (i and j) that have higher values than any element between them.
Example:
values: 0 10 8 9 6 7 4 10 0
index : 0 1 ...
28
votes
21answers
2k views
Data Structures… so how do I understand them?
So I am a Computer Science student and in about a week or so... I will be retaking a Data Structures course, using C++ for applying the theory. Yes, I did say "retaking". I took the course last Fall ...
28
votes
13answers
6k views
Algorithm for creating a school timetable
I've been wondering if there are known solutions for algorithm of creating a school timetable. Basically, it's about optimizing "hour-dispersion" (both in teachers and classes case) for given ...
27
votes
6answers
814 views
Determining the complexities given codes
Given a snipplet of code, how will you determine the complexities in general. I find myself getting very confused with Big O questions. For example, a very simple question:
for (int i = 0; i < n; ...
27
votes
7answers
951 views
C Programming - My program is good enough for my assignment but I know its not good
I'm just starting an assignment for uni and it's raised a question for me.
I don't understand how to return a string from a function without having a memory leak.
char* trim(char* line) {
int ...
27
votes
19answers
2k views
I've decided I want to become a programmer, but I have some concerns.. Or, What does it take to become a computer programmer?
I've been interested in computer programming since I was about 14 or 15 years old. I taught myself C++ (with the now-deprecated libraries such as iostream.h), and wrote some simple console programs. ...
27
votes
20answers
3k views
How to make up for lack of a computer science degree? [closed]
I’m a telecommunications major who has taken the two intro programming classes as well as a data structures class. I’m not sure if I want to do networking or software development. Although I know ...
26
votes
4answers
10k views
Issues with ANDs and ORs (COBOL)
I have a homework assignment that need turned in tomorrow and I can't seem to get this one part right. See I was given a input file with a bunch of names, some of which I need to skip, with extra info ...
26
votes
12answers
2k views
TDD Exercise Ideas
I am about to give a TDD workshop. I have the theoretical part pretty much sorted out, but I wish to avoid typical Tic-tac-toe, Currency or god forbid Calculator exercise. Any suggestions for a good ...
26
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)
{
// ...
...
25
votes
15answers
2k views
Should functional programming be taught before imperative programming?
It seems to me that functional programming is a great thing. It eliminates state and makes it much easier to automatically make code run in parallel.
Many programmers who were first taught imperative ...
24
votes
11answers
2k views
What Java feature(s) historically started as a pattern and is now a language feature?
I'll be honest. I need help with a homework question that I'm stumped with...
Describe something that historically started as a pattern and is now supported with
a language feature in Java.
24
votes
4answers
37k views
How can I get a list of files in a directory using C or C++?
How can I determine the list of files in a directory from inside my C or C++ code?
I'm not allowed to execute the 'ls' command and parse the results from within my program.
24
votes
16answers
35k views
How to find the kth largest element in an unsorted array of length n in O(n)?
I believe there's a way to find the kth largest element in an unsorted array of length n in O(n). Or perhaps it's "expected" O(n) or something. How can we do this?
Cheers!
p.s. this is not for ...
23
votes
10answers
20k views
Implement Stack using Two Queues
A similiar question was asked earlier there, but the question here is the reverse of it, using two queues as a stack. The question...
Given two queues with their standard operations (enqueue, ...
22
votes
10answers
1k views
3D modeling for programmers
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 math ...
21
votes
4answers
6k views
How to do an INNER JOIN on multiple columns
I'm working on a homework project and I'm supposed to perform a database query which finds flights either by the city name or the airport code, but the flights table only contains the airport codes so ...
20
votes
4answers
391 views
Just a little recursion problem (java)
I'm currently just working my way through some recursion problems, and I am currently stuck on one.
The problem is to recursivly insert spaces into a string, into every single possible location, such ...
19
votes
17answers
8k views
Find the least number of coins required that can make any change from 1 to 99 cents
Recently I challenged my co-worker to write an algorithm to solve this problem:
Find the least number of coins required that can make any change from 1 to 99 cents. The coins can only be pennies ...
19
votes
15answers
21k views
difference between abstraction and encapsulation?
What is the precise difference between encapsulation and abstraction?
18
votes
5answers
490 views
C Programming File Reading/Writing Technique
Good Day!
It is my first time to create a program with file reading and writing involved. Actually I'm wondering what is the best technique on doing this. Because when I compared my work with my ...
18
votes
7answers
1k views
How to sort 100GB worth of strings
Given a harddrive with 120GB, 100 of which are filled with the strings of length 256 and 2 GB Ram how do I sort those strings in Java most efficiently?
How long will it take?
18
votes
16answers
15k views
Good Programming Projects/Assignments for Students
I remember when I took my first programming class in the 11th grade in high school. The course was called AP Computer Science. Anyway, the teacher had some very cool and challenging assignments to ...
18
votes
13answers
31k views
Reversing a Linked List in Java, recursively
I have been working on a Java project for a class for a while now. It is an implementation of a linked list (here called AddressList, containing simple nodes called ListNode). The catch is that ...
18
votes
6answers
6k 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 = ...
17
votes
3answers
195 views
What is an efficient algorithm for counting the number of triangles in a graph?
What is an efficient algorithm for counting the number of triangles in an undirected graph )(where a graph is a set of vertices and edges)? I've been searching Google and reading through my shelf of ...
17
votes
7answers
2k views
What is segmentation fault?
What is segmentation fault? Is it different in C and C++? How are segmentation fault and dangling pointer related?