Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
5answers
391 views

Using iterative style to clone an object in JavaScript

Is it possible to rewrite the following JavaScript recursive function to make it faster? function clone_recursive(object) { var result = {}; for (var key in object) { var value = ...
7
votes
1answer
885 views

Scaling an iterative, bitwise algorithm to solve the Towers of Hanoi using X discs and Y towers

I like the algorithm mentioned in this question: "How does this work? Weird Towers of Hanoi Solution" http://stackoverflow.com/questions/2209860/how-does-this-work-weird-towers-of-hanoi-solution Is ...
7
votes
10answers
1k views

How do you estimate an agile project up front?

When working on fixed price software development projects, I frequently find myself having to estimate the total number of hours a project will take after the price is set, but before the work is ...
6
votes
3answers
273 views

Looking for testing matrices/systems for iterative linear solver

I am currently working on a C++-based library for large, sparse linear algebra problems (yes, I know many such libraries exist, but I'm rolling my own mostly to learn about iterative solvers, sparse ...
6
votes
8answers
1k views

Is it possible to speed up a recursive file scan in PHP?

I've been trying to replicate Gnu Find ("find .") in PHP, but it seems impossible to get even close to its speed. The PHP implementations use at least twice the time of Find. Are there faster ways ...
5
votes
8answers
734 views

Make nested for loop algorithm - dynamic

I have an algorithm that goes something like this: for m = 1 to 2 initialize(work_item(m)) for l = 1 to 2 initialize(work_item(l)) for k = 1 to 2 initialize(work_item(k)) for ...
3
votes
2answers
2k views

How does this iterative Tower of Hanoi work? C [closed]

Possible Duplicate: How does this work? Weird Towers of Hanoi Solution Hello, while surfing google, i found this interesting solution to Tower Of Hanoi which doesn't even use stack. Can ...
3
votes
2answers
358 views

Iterative hashing

I'm just wondering, is there a reason why some libraries (be it any language) use iterative hashing such that the hashed data is encoded in hex and rehashed again instead of rehashing the actual ...
3
votes
2answers
548 views

Iterative version of Python's deepcopy

Is there an existing implementation of an iterative version of deepcopy for Python 2.5.2? The deepcopy method available from the copy module is recursive and fails on large trees. I am not in a ...
2
votes
3answers
90 views

Any way to convert Java constants in a Constants class to an iterative form in another?

I have a constants class full of a bunch of final static strings. I need a way to get access to all these constants in this class in a nice array type form without manually created an array with each ...
2
votes
5answers
469 views

Iterative MapReduce

I've written a simple k-means clustering code for Hadoop (two separate programs - mapper and reducer). The code is working over a small dataset of 2d points on my local box. It's written in Python and ...
2
votes
1answer
772 views

Hadoop: Iterative MapReduce Performance

Is it correct to say that the parallel computation with iterative MapReduce can be justified mainly when the training data size is too large for the non-parallel computation for the same logic? I am ...
1
vote
2answers
52 views

Converting a bunch of nested recursive functions to iterative funcs

I have read that it is in principle possible to convert a recursive function to an iterative function. I have some bunch of functions calling each other. I constructed the structure of the code ...
1
vote
2answers
49 views

Local File Search with iterative algorithm

I am working in a desktop application for windows using Java. In my application, there is a requirement to search all .php. To do this, here I use recursive methods. import java.io.File; public ...
1
vote
1answer
57 views

MATLAB save iteratively to struct

MATLAB save iteratively to struct 1) Running a function 2) Each output [vectorA, vectorB], which are vectors of different sizes, should be save in each iteration i in the struct But this sytax ...
1
vote
1answer
93 views

enable iterative calculation mode in excel using c#?

How do I enable iterative calculation option in Excel through C#? I know how do it through the UI inside excel, but I would like to allow my program to change it via the Excel Interop.
1
vote
1answer
86 views

Recursive Fib style function into Iterative?

I have a function in java which is written with a recursive algorithm that needs to be written in Iterative form. The thing is that I dont know where to start in wrapping my mind around a new ...
1
vote
1answer
97 views

revert/undo/redo/refresh, an `import` in interactive python session [closed]

Possible Duplicate: How do I unload (reload) a Python module? Would it be possible to 'refresh' an imported module in python? The use case: interactively improving the module; up til now, ...
1
vote
3answers
42 views

T-SQL iteratively check history pattern

How do you make a selection based on an item's prior history? For example, I'm trying to select an item that has a val of 1, previously had a val of 10, and previously before that had a val of 1. ...
1
vote
2answers
103 views

Are the nodes in stack for iterative postorder traversal are always ancestors and no other node for some node?

If I need to print all nodes on path to root for some node with some given property. Can I use iterative postorder traversal to find the node and then print entire stack? EDIT : Is there any other ...
1
vote
0answers
379 views

Underline a collection of terms in a WPF rich text box

I have a collection of terms, each of which I want to underline in the contents of a WPF Rich Text Box. Using techniques I found here and elsewhere, I'm able to do just that, as long as each term in ...
1
vote
1answer
205 views

SML - Iterative translation of list replace function

I believe I'm on the right track in converting my first function to only use assignments and loops. I know this is against functional programming, but it's what a professor wants. Recursive ...
1
vote
1answer
138 views

Advice converting recursive Diff Algorithm to an iterative one?

Greetings! I wrote a recursive diff algorithm from scratch. It finds the "best match" between two strings such that the differences are minimized, and prints out the two strings with any differences ...
1
vote
4answers
926 views

Anyone know an example algorithm for word segmentation using dynamic programming?

If you search google for word segmentation there really are no very good descriptions of it and I'm just trying to fully understand the process a dynamic programming algorithm takes to find a ...
1
vote
1answer
902 views

Iterative version of Binary Tree Search

Basic Tree-search algorithm for searching a node (with value k) in a binary search tree. 'x' denotes the node of the binary search tree. TREE-SEARCH (x, k) if x= NIL or k = key[x] then return x ...
1
vote
1answer
256 views

how to do a iterative rollup in sql

Hi I want to do a rolling sum (of valx) based on previous row value of rolling sum(valy) and the current row value of valx valy=previousrow_valy + valx animal valx valy cat 1 1 cat 3 4 ...
1
vote
3answers
385 views

Jquery Onclick not happening second time

I'm a bit confused as to why this isn't working; I assume that because I'm adding the class and its not being added back into the collection I'm not sure. Here it is on a jsbin http://jsbin.com/ayije ...
0
votes
2answers
42 views

Ruby - Calling a method from a loop within another method

Here's the problem... I have a method that I'm calling to strip out characters and convert strings to floats. def convert_to_float(currency) return currency.gsub(/regex/, "").to_f end I have ...
0
votes
2answers
41 views

How to generate in PHP all combinations of items in multiple arrays

I'im trying to find all combinations of items in several arrays. The number of arrays is random (this can be 2, 3, 4, 5...). The number of elements in each array is random too... For exemple, I have ...
0
votes
3answers
95 views

recursion to iteration

I am working in a desktop application for windows using Java. In my application, there is a requirement to search all .php. To do this, I use recursive methods. import java.io.File; public class ...
0
votes
3answers
97 views

Need help in implementing a binary search in C

Edited out for reasons that I don't want my code copied by others in the class.
0
votes
1answer
50 views

Trying to understand how list gets modified while iteratively reversing a linked list

I have the following code which iteratively reverses a linked list. struct list { int elem; list *next; }; /* .... */ void ReverseListIterative(list **listref) { list *currNode = ...
0
votes
0answers
25 views

Can anyone suggest effficient iterative methods to solve linear equations?

I'm writing a program in Java to solve a system of linear equations using an iterative method. I do not want to use Gaussian elimination. Two methods I cam across were Jacobi and Gauss-Seidel ...
0
votes
0answers
77 views

N Queens iterative dynamically allocated array C++

I was hoping someone could help me with this problem. I have a (incredibly basic) code that I had used for the 8 queens problem, and I'm trying to modify it so it will work with a dynamically ...
0
votes
1answer
139 views

iterative deepening search source code

I couldn't find the source code using google. (java, c, c++) Actually I'm looking for a code that takes a binary tree and using the iterative deepening search, it gives me the path to the node I want. ...
0
votes
1answer
84 views

Java Iterative Array [closed]

Let's say we have an array like this int A[] = {5, 6, 8, 6, 2, 4}; I cannot use two consecutive values and must find the highest possible result by adding these values together. Example : In this ...
0
votes
1answer
61 views

run picoC non-recursively as an interated function

I've been playing around with a few C interpreters and have found picoC to look like it meets all my needs. to kick off a script you call void PicocCallMain(int argc, char **argv); which recursively ...
0
votes
2answers
70 views

Iteratively Reference Controls by Name Pattern (VB.NET)

Is there a way to iteratively reference an ASP.NET control based on it's name pattern? Perhaps by a "pointer" or something? What I have are a large set of comboboxes (each with an associated ...
0
votes
0answers
70 views

Sql Server iterative select/update

I have table with storage. There is 20 columns for "amount" which can be zero or greater (can not be null). IDCity | Amount0 | Amount1 | ... Amount19 ...
0
votes
0answers
80 views

Breadth First Search Analysis

I have a large social network graph having millions of users similar to facebook. I need to find the shortest distance as well as the path from one user to another(both users may or may not be ...
0
votes
0answers
25 views

How is iterative deepening more efficient than just scanning the nodes at a specified depth level.

Isn't it redundant to rescan n-1 levels of nodes for each iteration?
0
votes
1answer
74 views

Complexity of an iterative method?

Problem: I want to implement the Jacobi method. It is similar to a fix point method: Xn+1 = P Xn +Q if X* verify X=PX +Q then if Xn converge then it converge to X* let say I succeed in finding ...
0
votes
1answer
33 views

Compiler/Bootstrapping - Slower by recompiling off old bootstrapped compilers?

I have been rereading http://cm.bell-labs.com/who/ken/trust.html and I cannot seem to grasp the concept in Stage II with the vertical tab. My question to you guys is: Are characters being checked ...
0
votes
2answers
118 views

iterative machine learning algorithm [closed]

I need a machine learning algorithm which takes some training samples of form (x,y), and compute approximate function f:X->Y such that the error is minimum. error is defined as the difference b/n y ...
0
votes
0answers
27 views

showing error value during iterative process (in order to get the transformation matrix) in FLARToolKit

I'm creating a simple augmented reality scene that I made based on Lee Brimelow's tutorial, using Adobe Flex Builder. I already asked about this in here. I'm trying to find the PSNR of my program. To ...
0
votes
1answer
334 views

In Android, usege of ProgressDialog.show() and ProgressDialog.hide() problem during fetching data from the internet

When I define progress dialog functions such as public static void showLoadingBar(Context context) { dialog=new ProgressDialog(context); dialog.setMessage("Please wait"); ...
0
votes
3answers
404 views

How to create a C Program in a GUI window?

I have a bunch of simple programs that I would like to display in a GUI window rather than a DOS terminal. How can I accomplish this? Do I need to call upon a library or what? Thanks.
0
votes
4answers
217 views

How to Transition to Scrum

My team has grown fairly quickly from 1 to 5 over the last year or so and are very interested in changing our development style from Waterfall to a more iterative approach like Scrum. We work for a ...
0
votes
0answers
27 views

Iterative text replacement across multiple files?

Disclaimer: Not a programmer by trade, but I've messed around a little in the past. Problem: I have a CLI program that generates an output text file from a text file list of inputs. I have been ...
0
votes
6answers
317 views

How can I make a recursive version of my iterative method?

Greetings. I am trying to write a recursive function in Java that prints the numbers one through n. (n being the parameter that you send the function.) An iterative solution is pretty straightforward: ...

1 2