Tagged Questions

0
votes
1answer
15 views

Record the Application session time using iPhone SDK?

I want to record the duration of Application executed in order to keep logs of activity of users. Should I use a global NSTimer to record the time? or is there any better method? Sample codes are …
1
vote
5answers
61 views

Javascript run-time analysis

Hello, I've written a Javascript file, using jQuery, that I would like to perform run-time tests on. I've never done this before and was just curious on how to go about it. One site I visited …
4
votes
2answers
109 views

Best-case Running-time to solve an NP-Complete problem?

What is the fastest algorithm that exists up with to solve a particular NP-Complete problem? For example, a naive implementation of travelling salesman is O(n!), but with dynamic programming it can be …
0
votes
1answer
101 views

Running time of minimum spanning tree? ( Prim method )

I have written a code that solves MST using Prim method. I read that this kind of implementation(using priority queue) should have O(E + VlogV) = O(VlogV) where E is the number of edges and V number …
0
votes
2answers
92 views

Estimate Power Consumption Based on Running Time Analysis / Code Size

I've developed and tested a C program on my PC and now I want to give an estimate of the power consumption required for the program to do a single run. I've analysised the running time of the …
0
votes
1answer
137 views

How to change iPhone app language during runtime?

Is there a way to change the application language during runtime? So, after the change NSLocalizedString immediately returns the string for the new language. What I'm doing now is changing the …
3
votes
7answers
202 views

How long does my code take to run?

How can I find out how much time my C# code takes to run?
3
votes
4answers
115 views

Performing your own runtime analysis of your code in C#

I have written a large C# app with many methods in many classes. I'm trying to keep a log of what gets called and how often during my development. (I keep a record in a DB) Every method is padded …
1
vote
7answers
234 views

Another question about premature optimization

Knuth said: We should forget about small efficiencies, say about 97% of the time: premature optimization is the root of all evil I’m curious how he came up with 97%. Could someone please share …
0
votes
2answers
350 views

Graph layout optimization in C#

I've got a list of objects that I need to organize as an aesthetic graph. My current approach involves IronPython and a genetic algorithm, but this takes way too long. I've been reading up on …
3
votes
6answers
362 views

Why does this speed up my SQL query?

I learned a trick a while back from a DBA friend to speed up certain SQL queries. I remember him mentioning that it had something to do with how SQL Server compiles the query, and that the query path …
2
votes
4answers
129 views

Finding the nearest used index before a specified index in an array (Fast)

This question is related to http://stackoverflow.com/questions/1053242/array-of-pairs-of-3-bit-elements This array has 52 pairs (about 40 bytes), and I want to find the first pair before the specified …
0
votes
1answer
33 views

Why does processing multiple individual targets take longer when Nant is directed to process them from a single target?

I have a nant build script that specifies the compilation of various Visual Studio solution files. <target name="compile.solution1" description="Compiles solution 1"> <msbuild …
0
votes
12answers
416 views

Efficency of Comparisons in C++? ( abs(X)>1 vs abs(x) != 0)

I know- Premature optimization. But I've got code that's supposed to find out if a position is changed vs a cached position. Current code is: if(abs(newpos-oldpos) > 1){ ..... } Is it more …
3
votes
6answers
826 views

Most efficient way of converting String to Integer in java

There are many ways of converting a String to an Integer object. Which is the most efficient among the below: Integer.valueOf() Integer.parseInt() …

1 2 3 4 next
15 30 50 per page