Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
7answers
8k views

Help me understand Inorder Traversal without using recursion

I am able to understand preorder traversal without using recursion, but I'm having a hard time with inorder traversal. I just don't seem to get it, perhaps, because I haven't understood the inner ...
15
votes
3answers
10k views

Post order traversal of binary tree without recursion

Does anyone know the algorithm for doing a post order traversal of a binary tree WITHOUT using recursion. Any information would be greatly appreciated.
5
votes
3answers
289 views

Rewriting a recursive function without using recursion

I'm rewriting some existing code in a setting where recursive calls are not easily implemented nor desired. (And in Fortran 77, if you must know.) I've thought about making a stack from scratch to ...
4
votes
2answers
233 views

Pseudocode for non-recursive implementation of tree height and isBST

I am in the process of converting recursive function for a BST to non recursive to help prepare for an interview. So far I figured out preorder, inorder, postorder, search, delete, insert, and ...
4
votes
2answers
435 views

a non recursive approach to the problem of generating combinations at fault

I wanted a non recursive approach to the problem of generating combination of certain set of characters or numbers. So, given a subset k of numbers n, generate all the possible combination ...
2
votes
3answers
119 views

Deep graph results in stack overflow: non-recursive serialization options?

We're getting StackOverflowErrors from Java's serialization library. The problem is that the default serialization implementation is recursive, the depth of which is bounded only by the longest path ...
2
votes
6answers
4k views

iterative version of recursive algorithm to make a binary tree

Given this algorithm, I would like to know if there exists an iterative version. Also, I want to know if the iterative version can be faster. This some kind of pseudo-python... the algorithm returns ...
1
vote
2answers
239 views

Dynamic programming approach to calculating Stirling's Number

int s_dynamic(int n,int k) { int maxj = n-k; int *arr = new int[maxj+1]; for (int i = 0; i <= maxj; ++i) arr[i] = 1; for (int i = 1; i <= k; ++i) for(int j = ...
1
vote
2answers
176 views

List of Current Folder files ONLY?

Hello I'm trying to get Perforce syntax to obtain (for example using "fstat") list of files only in given folder (depot), without rubbish from all sub-folders. But I was not able to find anything in ...
0
votes
3answers
230 views

java: Non-Recursive Depth First Search using ArrayDeque or LinkedList or LinkedBlockingDeque?

public void traverse(Node root){ ArrayDeque<Node> queue = new ArrayDeque<Node>(); queue.add(root); while(!queue.isEmpty()){ Node currentNode = queue.pollFirst(); ...
0
votes
2answers
221 views

Non-recursive add function in a binary tree using c++

I am writing an Add function to add nodes to a binary tree non recursively. I have run into the problem of only being able to produce one level deep binary tree. I debugged it and I know where the ...
0
votes
2answers
77 views

Create a tar file in a subdirectory of the directory to be archived

I'd like to create a tar file of all the files in a directory minus sub-directory's in that directory and place that tar file in one of the sub-directory's. For example, I have several .txt files in ...
0
votes
1answer
501 views

Binary Search Tree. Insert method inserting incorrectly

I have an issue where my items in my binary tree are being inserted incorrectly. I'm inserting strings in each node. I think I might be doing something wrong because it seems like I always end up with ...
0
votes
1answer
476 views

Non-recursive os.walk()

I'm looking for a way to do a non-recursive os.walk() walk, just like os.listdir() works. But I need to return in the same way the os.walk() returns. Any idea? Thank you in advance.
0
votes
1answer
538 views

Maven: trying to get my submodule's poms to NOT inherit a plugin in the parent

My project has a parent pom and several submodule poms. I've put a plugin in the parent that is responsible for building our installer distributables (using install4j). It doesn't make sense to have ...
0
votes
4answers
12k views

Retrieving a Binary-Tree node's depth non-recursively

Can anyone point out a way of getting the depth of a Node in a Binary Tree (not a balanced one, or BST) without using recursion? Ideally in Java/C/C# The node is represented as: class Node { Node ...