Tagged Questions
235
votes
26answers
25k views
Interview question: Check if one string is a rotation of other string [closed]
A friend of mine was asked the following question today at interview for the position of software developer:
Given two string s1 and s2 how will you check if s1 is a rotated version of s2 ?
Example: ...
81
votes
13answers
12k views
C++ versus D
Is the D language a credible alternative to Java and C++? What will it take to become a credible alternative? Should I bother learning it? Does it deserve evangelizing?
The main reason I ask is that ...
68
votes
11answers
3k views
Efficiency of premature return in a function
This is a situation I encounter frequently as an inexperienced programmer and am wondering about particularly for an ambitious, speed-intensive project of mine I'm trying to optimize. For the major ...
40
votes
8answers
14k views
Is there a Java equivalent or methodology for the typedef keyword in C++?
Coming from a C and C++ background, I found judicious use of typedef to be incredibly helpful. Do you know of a way to achieve similar functionality in Java, whether that be a Java mechanism, ...
33
votes
10answers
15k views
The most efficient way to implement an integer based power function pow(int, int)
What is the most efficient way given to raise an integer to the power of another integer in C?
// 2^3
pow(2,3) == 8
// 5^5
pow(5,5) == 3125
32
votes
11answers
3k views
Very small programs to improve programming skills?
I realize that to become a better programmer, you need to program!
So obviously the more practice, the better you become.
My problem is this. I am currently in university, and I find my course load ...
29
votes
35answers
5k views
I can learn either C or Java, which one should I choose first? Should I take them concurrently? [closed]
I realize this is a subject of hot debate, but I'm interested in opinions that relate to my specific situation.
I want to learn the basics and fundamentals of programming, so I'm already taking a ...
28
votes
14answers
2k views
Code to read and learn from [closed]
The best way to learn programming is by writing programs. Reading programs written by brilliant programmers is equally important. If someone asks me for source code to read and learn from, without a ...
26
votes
3answers
4k views
Why is go language so slow?
As we can see from The Computer Language Benchmarks Game:
go is on average 10x slower than C
go is 3x slower than Java !?
How can this be, bearing in mind that go compiler produces native code ...
25
votes
1answer
1k views
Logic differences in C and Java
Compile and run this code in C
#include <stdio.h>
int main()
{
int a[] = {10, 20, 30, 40, 50};
int index = 2;
int i;
a[index++] = index = index + 2;
for(i = 0; i <= 4; i++)
...
24
votes
22answers
3k views
How difficult is it to turn a “Java School” programmer into a C or C++ programmer?
My company, a C++ house, is always looking to hire recent grads. However due to the Java Schools phenomenon, we typically end up interviewing strong Java programmers with maybe a minute smattering of ...
23
votes
16answers
814 views
Best Loop Idiom for special casing the last element
I run into this case a lot of times when doing simple text processing and print statements where I am looping over a collection and I want to special case the last element (for example every normal ...
23
votes
21answers
2k views
Where & How to start a career as a software developer [closed]
I am a newbie here. So please bear with me if this is a duplicate/very trivial Qn. I am not from a Computer Science background. But currently working in software testing. I would like move to software ...
22
votes
23answers
5k views
How can I perform multiplication without the '*' operator?
I was just going through some basic stuff as I am learning C. I came upon a question to multiply a number by 7 without using * operator. Basically its like this
(x<<3)-x;
Now I know ...
21
votes
12answers
1k views
Why do C languages require parens around a simple condition in an if statement?
It sounds stupid, but over the years I haven't been able to come up with a use case that would require this. A quick google search didn't reveal anything worthwhile.
From memory there was a use case ...
20
votes
17answers
2k views
Which complements Python best: Java, C, or C++?
I am in the process of applying to a Computer Science program which requires students to have at least an intro-level exposure to either Java, C or C++. I have some experience with Python and I would ...
20
votes
3answers
7k views
Java - C-Like Fork?
Is it possible to do a "C like" fork in java, using an new independent jvm process ?
How?
19
votes
7answers
935 views
Unit testing real-time / concurrent software
The classical unit testing is basically just putting x in and expecting y out, and automating that process. So it's good for testing anything that doesn't involve time. But then, most of the ...
18
votes
2answers
778 views
C interpreter written in javascript
Is there any C interpreter written in javascript or java ?
I don't need a full interpreter but I need to be able to do a step by step execution of the program and being able to see the values of ...
18
votes
17answers
866 views
Is there programming language with better approach for switch's break statements?
It's the same syntax in a way too many languages:
switch (someValue) {
case OPTION_ONE:
case OPTION_LIKE_ONE:
case OPTION_ONE_SIMILAR:
doSomeStuff1();
break; // EXIT the switch
case ...
18
votes
26answers
7k views
What is faster- Java or C# (or good old C)?
I'm currently deciding on a platform to build a scientific computational product on, and am deciding on either C#, Java, or plain C with Intel compiler on Core2 Quad CPU's. It's mostly integer ...
17
votes
1answer
354 views
Calling Haskell from Java with C in between
This probably sounds like a nightmare, but I'd really like to get this working. I am using this example for the most part: Calling C from Haskell and am trying to get this working on ubuntu.
I am ...
17
votes
7answers
562 views
How are static arrays stored in Java memory?
So in a language like C, memory is separated into 5 different parts: OS Kernel, text segment, static memory, dynamic memory, and the stack. Something like this:
If we declared a static array in C, ...
15
votes
8answers
850 views
What is a VM and why do dynamic languages need one?
So, for example, Python and Java have a VM, C and Haskell do not. (Correct me if I'm wrong)
Thinking about what languages on both sides of the line have, I can't find the reason. Java is static in a ...
14
votes
7answers
537 views
Whats possible in a for loop
So today I went to an interview and one of the questions was the following (C# context).
//Print the output for the following code:
for (int i = 10, j = 0; j <= 10; j++, i--)
{
if (i > j)
...
14
votes
5answers
387 views
IDE(s) for Polyglot programming
I'm working in Java, C ,Perl, and Bash (and a little python) on a project that all work together (mostly via RESTfull interfaces) and am looking for an IDE suited to Polyglot programming?
What IDE ...
14
votes
10answers
686 views
Where to begin with programming for robotics?
Ok so i've been interested in robotics for a while and had a project in mind. Building a small remote controlled vehicle-robot/ unmanned vehicle-robot. Hopefully with the ability to read in data from ...
13
votes
2answers
469 views
Filling the data in an Android bitmap as quickly as possible from C
I've managed to get an android.graphics.Bitmap created and I'm successfully filling it via the SetPixels command.
The problem is that I start off with RGBA data. I then create a jintArray. I then ...
13
votes
4answers
330 views
Tutorial on C pointers and arrays from a Java standpoint
I'm currently a freshman in college, majoring in CS. I'm just about done with my "Intro to Computer Programming" class. I like it and feel like I'm learning a good bit.
A couple days ago, I read ...
13
votes
10answers
1k views
How to find repeating sequence of characters in given array
my problem is to find the repeating sequence of characters in the given array. simply, to identify the pattern in which the characters are appearing.
example:
for the examples in the above image ...
13
votes
16answers
6k views
C vs. Java for game programming
I understand that C++ is generally considered better than Java for games (at least larger-scale games). Why is this?
What is keeping Java from being competitive in this field? Which reasons against ...
13
votes
10answers
2k views
Garbage collection vs. non garbage collection programming languages
So if I understand well, Garbage collection automatically deallocates objects that are not used by the program anymore. like the garbage collector in java.
I hear in languages like C that don't ...
13
votes
14answers
4k views
Best Language for String Manipulation? [closed]
I am about to begin writing an app that handles adding new users/repostories to my subversion server, so that I don't have to repeatedly open vi and edit conf files and execute shell commands.
Most ...
13
votes
10answers
2k views
What is the difference between passing by reference in Java and passing a pointer in C?
I have been studying Java for a few months and am now starting to learn C.
I am a little confused, I was under the impression that passing an object by reference and passing a pointer to that object ...
12
votes
4answers
514 views
What is the best log file format? [closed]
We are developing a database tool and we'd like to write a log file in a format which is extendable and easy to be imported into a database table. We all feel that filtering this info by using SQL is ...
12
votes
10answers
2k views
Java Runtime Performance Vs Native C / C++ Code?
I've become more and more comfortable programming in Java than with C++ or C. I am hoping to get a sense of the performance hit incurred using a JVM interpreter, as opposed to executing the same ...
12
votes
3answers
2k views
Python-style integer division & modulus in C
In Python and Ruby, signed integer division truncates towards negative infinity, and signed integer modulus has the same sign the second operand:
>>> (-41) / 3
-14
>>> (-41) % 3
1
...
12
votes
6answers
4k views
Port of Random generator from C to Java?
George Marsaglia has written an excellent random number generator that is extremely fast, simple, and has a much higher period than the Mersenne Twister. Here is the code with a description:
good C ...
12
votes
15answers
4k views
Does C++ still matter?
I am a CS student currently learning C. I'd like to get into low level programming, whether as a hobby or career and may contribute to some open source projects down the line. So far I really enjoy C ...
11
votes
5answers
496 views
Find all differences in an array in O(n)
Question: Given a sorted array A find all possible difference of elements from A.
My solution:
for (int i=0; i<n-1; ++i) {
for (int j=i+1; j<n; ++j) {
...
11
votes
3answers
872 views
How can i do speech recognition in C or Java or PHP?
Is there any well known established framework for C or Java or PHP to do speech recognition applications? Microphone audio input and it will recognize English words. Such as pseudo code:
Speech s = ...
11
votes
10answers
742 views
Can you only write operating systems in C?
I get that C and its super sets allow you to have low level access, but could you use a different language. For example Visual Basic, C# or even Java? I was just curious because it seems like ...
11
votes
9answers
1k views
As Java is to Scala, C++ is to …?
Although C++0x is quite an improvement to C++ (type inference, anonymous functions, and so on), I have to say that Scala seems even better. The thing is that Scala only runs on the JVM, although it ...
11
votes
3answers
3k views
How to pass C structs back and forth to Java code in JNI?
I've got some C functions which I am calling through JNI which take a pointer to a structure, and some other functions which will allocate/free a pointer to the same type of structure so that it is a ...
11
votes
6answers
467 views
What should a developer know before building cellphone apps?
I want to start making cellphone apps with Android as first choice but not the only one. I have 10 years of experience with Java, C#, C++ in commercial applications and I know that many things and ...
11
votes
8answers
911 views
Use the right tool for the job: embedded programming
I'm interested in programming languages well suited for embedded programming.
In particular:
Is it possible to program embedded systems in C++?
Or is it better to use pure C?
Or is C++ OK only if ...
11
votes
7answers
702 views
Examples of program that writes programs
Where can I find such programs? I think yacc and lex are this kind of programs? I'd like to see example codes especially in C language.
11
votes
3answers
924 views
C/C++ versus Java/C# in high-performance applications
My Question is regarding performance of Java versus compiled code, for example C++/fortran/assembly in high-performance numerical applications.
I know this is contentious topic, but I am looking for ...
10
votes
6answers
360 views
Android: Java, C or C++?
I wrote some simple apps in Android using Java.
But later I found this:
It provides headers and libraries that allow you to build activities,
handle user input, use hardware sensors, access ...
10
votes
5answers
1k views
Pre & post increment operator behavior in C, C++, Java, & C#
DISCLAIMER: This is not a real-world example. It is just a theoretical question of how these languages work.
What exactly are the differences between C/C++, C#, and Java when it comes to post ...