0
votes
0answers
27 views

Can I write this octave code more efficient?

I want to run this code more efficiently. Can I get rid of this for loop? Thanks... N = 2^15; ftx = fft([1:N]); k=[1:N]; rpmt = repmat(ftx,[2,1]); for m = [1:N] retval(m) = ...
-8
votes
3answers
92 views

Faster Code Anyone? :) [closed]

EDIT: shaved roughly 10% processing time with: register int16_t *libwordPointer = libword; int16_t *nReset; register int16_t *wordsPointer = words[word]; int16_t *mReset = wordsPointer; for( int ...
0
votes
2answers
36 views

Performant intersection algorithm for Bounding Box with a Line Segment emanating from its center point

There are many close, helpful answers to similar questions listed on stackoverflow, however i have not found any yet that match my particular case. I need a performance efficient algorithm to ...
-2
votes
1answer
81 views

What 's Big O notation on this specific code? [closed]

I want to know Big O notation and Big Omega notation (worst case, best case) of this code It is a sorting algorithm and my guess is that it has a O(n) and Omega(n) : public static void swap(int[] ...
1
vote
3answers
52 views

How can I change this function call and algorithm to find the string with the smallest value in a list of size n. w/o the min function

How can I change this function call and algorithm to find the string with the smallest value in a list with size n. Also I am aware of the built-in min function, I am simply trying to understand the ...
-7
votes
4answers
59 views

What is the runtime complexity of the following method considering the simple statements? [closed]

Here is the code in java: void test(int n) { int i, j; ///first loop for ( i = 1; i <= n; i ++) { //second loop for (j ...
-1
votes
4answers
112 views

What is the Big Oh Efficiency of Program with Finite For Loop?

What would be the efficieny of the following program, it is a for loop which runs for a finite no. of times. for(int i = 0; i < 10; i++ ) { //do something here, no more loops though. } So, ...
13
votes
1answer
112 views

e-commerce: Algorithm for calculating discounts

I'm in need of expert advice on a tricky matter. The scenario is: e-commerce web-site lots of products lots of discounts mixed on these products A product is identified by a unique ProductID and ...
0
votes
3answers
70 views

How can I speed up this brute force addition algorithm in Objective-C?

I'm trying to learn a little more about algorithms and have built a simple one to see, using brute force, whether a target number can be made from a grid of randomly created numbers. I've done enough ...
-4
votes
1answer
78 views

Measure time complexity of a program in any programming language

I am searching for a standard way to identify running time complexity of a program. As described here, I am not searching for a solution for analyzing the same by looking at code, rather than through ...
0
votes
1answer
27 views

Runtime of string concatenation checking algorithm

I wrote an algorithm to check whether or not a string is a concatenation of any number of strings in an array (while being able to use a string multiple times). I'm having trouble figuring out exactly ...
1
vote
1answer
38 views

Faster way to do a correspondence replace operation in python?

I am not sure I'm using the right term for this---I'd call this a merge operation maybe? Simple matching? I have two dictionaries. One of them contains a list of tag IDs. The other one is a ...
3
votes
3answers
84 views

Best way to merge and remove duplicates from multiple lists in Java

I have a situation where I will be receiving 2+ ArrayList<Widget> and I need to be able to merge all the lists and remove any duplicate Widget so that I wind up with only 1 ...
1
vote
1answer
70 views

How to make MATLAB play an array faster?

I'm working on a audio processor, which is supposed to change the pitch and add a vibrato to a song while it is playing. Note that, although the sound isn't live (e.g. from a microphone) the effects ...
1
vote
2answers
64 views

Determine how many rotations of a string match the original string in O(n) time?

There are lots of questions discussing the fastest/best way to rotate a string or determine if one string is a rotation of another. For example, neglecting sanitization of inputs, you'll see ...
0
votes
1answer
54 views

Is this generalization of Big-Theta notation correct?

Say you have an algorithm that completes in a polynomial number of steps for the input of size n, like, for example, P(n)=2n^2+4n+3. The asymptotic tight bound for this algorithm Θ(n^2). Is it true ...
0
votes
2answers
89 views

Time Complexity - Calculating Worst Case For Algorithms

I am reading some information on time complexity and I'm quite confused as to how the following time complexities are achieved and if there is a particular set of rules or methods for working this ...
0
votes
2answers
36 views

How to check the running time of my two different process in a single program

Here's the structure of my program while(oneMoreTime){ if(condition1) processA else processB } Now, for the first time, ProcessA runs, always. And once it is run, some data structure is ...
3
votes
3answers
118 views

Is NSMutableArray really a good backing store for stacks or queues?

I've read somewhere that NSMutableArray will have O(1) performance instead of O(n) when elements are added/removed from the ends of the array (e.g. removeAtObject:0 or removeLastObject) which makes it ...
3
votes
1answer
116 views

Slow iterating over string using pointers

I would love to see why one of the following solution is MUCH slower than the other. Lets concider following code: // create a very long string int x,y; bool b; char c[10000]; for ...
6
votes
4answers
157 views

Most efficient way to move row/column in 2D std::vector

I'm creating game application in C++. I have map represented as 2-dimensional std::vector of Tile objects. I need to update that map as player moves. From server application I get row or column with ...
1
vote
3answers
80 views

structuring complicated java methods

Can anyone show me how to control java's order of execution while still organizing the code in a simplified, easy-to-maintain structure? I am programming a rather complicated algorithm in java. One ...
17
votes
6answers
921 views

Is it possible to map string to int faster than using hashmap?

I understand that I should not optimize every single spot of my program so please consider this question to be "academic" I have maximum 100 strings and integer number for each of them, something ...
0
votes
2answers
68 views

performace issue with the code ,exponential working

I have two lists of type object with data , the first one is principal entity and the second is dependent entity. In addition I have key table that relate between the principal and depended entity ...
4
votes
5answers
136 views

Dynamic List View - Design Pattern

I have to implement design in this Mockup, my List will fetch real time data from server and cache it. The list will contain large images and up to 1000s of items. User will set the limit. Images ...
1
vote
2answers
46 views

Duplicate / multiplicate tree efficiently

I need (for g++) a (computation time) optimized algorithm tree structure to duplicate/multiplicate a tree. My tree will be a k-ary tree, but not necessarily filled. The main operation is to ...
1
vote
2answers
61 views

Data Structure for Mapping IP to City

I was reading interview questions from different companies and I came across this one: You are given a fixed file. The format of each line is city name, ip address range. Construct a data structure ...
-7
votes
1answer
95 views

Can anyone tell me best algo to check if a number is palindrome or not,I mean fastest algo cos I have to check for over 10^20 range [closed]

while(s1!=0) { rem1=s1%10; reverse=reverse1*10+rem1; s1/=10; } But this doesn't work for large number of range It takes a lot of time to compute for such input.
1
vote
2answers
52 views

Preprocess a constant set of strings for binary searching

I have a sorted list of several strings (size=K < 1000). I need to find insertion positions for billions (size=N) of strings in the sorted list. The list is kept constant and strings are inserted ...
1
vote
2answers
89 views

Quick sort runtime speed concerns

I am having something that troubles me. I have my implementation of a quick sort algorithm, but when I test it on an array of integers that has over 30 elements, sorting takes, in my opinion to long. ...
0
votes
2answers
52 views

What is the best way to build a one-to-many relationship?

I have an array of Videos objects with, among other things, the properties id and tags. I want to build a dictionary whose key is a tag and whose value is an array of id's. For example, some Video ...
1
vote
0answers
164 views

How to avoid using loops in this algorithm?

I try to avoid the loops in R, but it seems that I have to use it some times: X=rnorm(100) Y=matrix(rnorm(200*100),ncol=100) Beta=function(y,period){ # y is a vector, maybe one row of Y ...
4
votes
1answer
123 views

Product of two Toeplitz matrices?

The O(n log n) algorithm for the product of a Toeplitz matrix and a vector of the correct length is well-known: put it in a circulant matrix, multiply it by the vector (and subsequent zeroes), and ...
2
votes
1answer
109 views

odds of strstr performance

I am performing a few benchmarks of my code, and I decided to use strstr performance as a reference point. On my PC performance of scanning all text of ~7mb file (preloaded into RAM) is about ...
3
votes
2answers
105 views

Computing unique intersections of subsets

Given a set S = {si : {zj : z ∈ N} }, what is a time-efficient algorithm for computing the unique sets of intersections of the subsets of S? For background, I am dealing with several versions of ...
0
votes
1answer
115 views

Default car speed?

I have two buttons in my program. Left Button for brake (decreases speed) and right button for speed (increases speed). When nothing clicked, the car has a default speed. And there is a minimum (0.3) ...
2
votes
4answers
80 views

Regressive n log(n) sorting

I have a sorting algorithm that requires performing an n log n sort n times, with n decrementing by 1 in each step? In other words: I would expect a performance of O(n log n + (n-1) log (n-1) + (n-2) ...
1
vote
1answer
59 views

Algorithm to find specific char/letter in array of strings?

So I'm trying to come up with a algorithm to find words with a specific char/letter in an array of strings. If I want words with vowel e, I would get word apple and hello from below set. {apple, ...
0
votes
1answer
131 views

Find all possible substring in fastest way

For eg String A= "abcd" then answer should be {a,ab,abc,abcd,b,bc,bcd,c,cd,d} (I dont know whether this all are called substring or not but I am assuming so...) To find all the substring I have used ...
3
votes
2answers
113 views

What is the most efficient way to program electric wires in a 3d grid based environment?

I am currently working on a 2D grid based sandbox type game. Technically its 3D as the map is a 3 dimensional array with grid tiles being able to be placed behind each other. It is however rendered in ...
3
votes
3answers
136 views

Sorting algorithm efficiency/performance

I'm a beginner in programming and was just playing with sorting and made this algorithm. It is similar to bubble, but it compares not the adjacent pairs but pairs like: first and second, first and ...
1
vote
2answers
167 views

Optimize calculation of prime numbers [duplicate]

I am trying problem 3 from Project Euler and my algorithm is far too slow. Does anyone know how to optimize this? The number I am trying to calculate up to is 600851475143L. It takes forever to ...
-5
votes
1answer
99 views

Multiplication or if: what is more efficient? [closed]

I have a binary image (size: 100x100) of a hand, that we can represent as a matrix composed only by 0 or 1 values. This is an example: Assuming that I have an array of double representing the ...
2
votes
3answers
60 views

get maximal top k values

Now I have an expression y=0.5*a+0.7*b+0.4*c, where 0<a,b,c<1. Suppose there is a list table for the values of a,b,c, for example: (a, b, c) --------------- (0.9, 0.4, 0.6) (0.5, 0.8, 0.4) ...
1
vote
1answer
65 views

How to get te running time of the diameter of a graph?

If you have a simple undirected graph G(V, E), how can you find the diameter of the graph in O((|V|+|E|) * lg |V|) running time?
1
vote
2answers
75 views

Best way of returning differences of two json files programatically

I have two json files and I would like to get a json containing the differences. It is important that only the actual differences of content should be shown, regardless of changing the order of some ...
0
votes
3answers
94 views

fast multiplications

When I am going to compute the following series 1+x+x^2+x^3+..., I would prefer to do like this: (1+x)(1+x^2)(1+x^4)... (which is like some sort of repeated squaring) so that the number of ...
0
votes
2answers
122 views

Finding points in space closer than a certain value

In an python application I'm developing I have an array of 3D points (of size between 2 and 100000) and I have to find the points that are within a certain distance from each other (say between two ...
1
vote
2answers
135 views

Breadth first search branching factor

The run time of BFS is O(b^d) b is the branching factor d is the depth(# of level) of the graph from starting node. I googled for awhile, but I still dont see anyone mention how they figure out this ...
2
votes
1answer
89 views

Algorithmic Complexity Analysis: practically using Knuth's Ordinary Operations (oops) and Memory Operations (mems) method

In implementing most algorithms (sort, search, graph traversal, etc.), there is frequently a trade-off that can be made in reducing memory accesses at the cost of additional ordinary operations. ...

1 2 3 4 5 16