-4
votes
1answer
74 views

How to traverse through char array [closed]

Function receives char[,]. For example if it it takes 000 LAD 0B0 Traversing should print out all possible combinations of non-zero chars: L LA LAD LAB A AL AB AD and so on private void ...
0
votes
1answer
42 views

Regarding path generation algorithms

I need to set up a 2 dimensional space (for all practical purposes, a 2-D array) of paths.. Every index [y][x] contains a path..such as +-- --+ +-- --+ | || | | || | | | == ==++== | ...
3
votes
4answers
244 views

Time analysis of a Binary Search Tree in-order traversal algorithm

Below is an iterative algorithm to traverse a Binary Search Tree in in-order fashion (first left child , then the parent , finally right child) without using a Stack : (Idea : the whole idea is to ...
1
vote
2answers
494 views

Steepest Ascent Hill Climbing vs Best First Search

I am trying to solve a problem using different algorithms and Steepest Ascent Hill Climbing (SAHC) and Best First Search are two of these algorithms that I need to implement. According to Wikipedia: ...
0
votes
0answers
39 views

Pruning a tree and cloning the nodes as we traverse it. Is this a class of tree algorithm?

I am attempting to traverse a tree (in this case the html DOM), apply a pruning test at each node, and cloning the nodes that pass the test as I traverse the tree. My goal is to keep the original tree ...
1
vote
2answers
324 views

Printing Successor and Predecessor in a BST

My problem is as follows: I have a binary search tree with keys: a1<a2<...<an, the problem is to print all the (a_i, a_i+1) pairs in the tree (where i={1,2,3,...}) using a recursive ...
9
votes
3answers
206 views

Binary search is not efficient with traversal costs. What is?

Binary search let me down when I tried to apply it to the real world. The scenario is as follows. I need to test the range of a device that communicates over radio. Communication needs to ...
2
votes
1answer
206 views

Graph Theory Depth first Search

While implementing DF traversal using stacks , Do we need to push the element into the stack if it's already inside the stack but not visited?
3
votes
2answers
224 views

how many ways to visit all the points of a given matrix?

There is a m*n Matrix. From one point of the matrix, you can move to one of the eight adjacent points (up, down, left, right, upper left, lower left, upper right, lower right) If the point in one ...
1
vote
0answers
221 views

Walk on a DAG, Traverse All Paths From Sources to Sinks

I am trying to traverse an entire DAG, with the hope of coming up with pairs from a source to a sink. Ideally, I'd like each source to be unique, and each sink to be unique, thus creating unique ...
1
vote
1answer
133 views

Traverse matrix in a direction specified by azimuth

Traverse matrix in a direction specified by azimuth. So I have a 2D matrix and an azimuth. What I want to do is traverse the matrix in that direction. From that azimuth I can derive a line equation. ...
0
votes
2answers
2k views

Traverse a Tree - But Step by Step

I have following code to traverse a tree (pre-order): public void traverse(Node node) { visit(node); for (Node child : node.getChildren()) { traverse(child); } } I would like ...
0
votes
4answers
270 views

Implement a tree iterator

I created a very simple node class with a name and an array of nodes. I also created an iterator class with a next method that helps me iterate on each node and child nodes. I need to write the next ...
9
votes
2answers
1k views

Ray - Octree intersection algorithms

I'm looking for a good ray-octree intersection algorithm, which gives me the leafs the ray passes through in an iterative way. I'm planning on implementing it on the CPU, since I do not want to dive ...
0
votes
3answers
406 views

Graph edge traversal algorithm, some edges required, some optional

I have an undirected graph with all vertices of even degree. In this graph there is a set of edges that must be covered exactly once, and a set of edges that should not be covered at all unless ...
-1
votes
2answers
259 views

How I can iterate over a binary tree without using pointers or references?

One can iterate over a list without using pointers or references. In some cases this removes the need for actually having the list. Consider the following code, int i; for (i = 0; i < 10; ++i) ...
2
votes
0answers
53 views

Security Cost of Middlebox Traversal

I want to calculate the security cost of middlebox traversal when VM migrate from one physical server to another. Middle boxes can be firewalls or IPS/IDS containing rules checking the VM traversing ...
0
votes
1answer
122 views

Retrieving edges of a graph

I should create an algorithm to retrieve the list of edges (arcs) of a graph ADT. I can't access graph private members. I have thought I could do something similar to a DFS or BFS visit marking nodes ...
3
votes
1answer
3k views

Iterative DFS vs Recursive DFS and different elements order

I have written a recursive DFS algorithm to traverse a graph: void Graph<E, N>::DFS(Node n) { std::cout << ReadNode(n) << " "; MarkVisited(n); NodeList adjnodes = ...
0
votes
0answers
250 views

find 3 missing numbers from a list of 97 unique [duplicate]

Possible Duplicate: Easy interview question got harder: given numbers 1..100, find the missing number(s) Given a list (or array) of 97 numbers, each number is unique and between 1 and 100. ...
1
vote
2answers
126 views

Distance from a set of vertices in directed graph

I'm designing an algorithm for finding the minimum distance of a given vertex v from a subset of vertices A(that is from an element of this subset). I need to find the value k such that: distance ...
1
vote
1answer
499 views

Traverse String Clockwise using 1D Array only

I have implemented a function TraverseStringClockwise which takes a comma separated string of integers, and a width and a height, and returns a new string by walking in a clockwise order using 2D Char ...
1
vote
2answers
421 views

complexity of brute force array traversal

If I have a 4x4 grid for example and I want to start at an arbitrary cell (i,j) and then want to travel down every path without crossing over on myself, what is the complexity (big o) of this? I have ...
6
votes
6answers
3k views

Lowest Common Ancestor Algorithm

So I have been looking into implementing a lowest common ancestor algorithm. I looked at many different algorithms (mainly variations of Trajan's solution or variations of the RMQ). I am using a ...
1
vote
3answers
589 views

Algorithm to find duplicates in multiple linked lists

What is the fastest method of finding duplicates across multiple (large) linked lists. I will attempt to illustrate the problem with arrays instead just to make it a bit more readable. (I used numbers ...
3
votes
1answer
1k views

Graph traversal with A* algorithm

Hey, I'm AI Student and gonna try my homework that is implementation of A* algorithm in order to traversal a graph. i use c++ codes and what i made for now is below code which is only a Graph class + ...
6
votes
3answers
475 views

normalize boolean expression for caching reasons. is there a more efficient way than truth tables?

My current project is an advanced tag database with boolean retrieval features. Records are being queried with boolean expressions like such (e.g. in a music database): funky-music and not (live or ...
5
votes
1answer
607 views

Get a random element in single direction linked list by one time traverse

I have a single direction linked list without knowing its size. I want to get a random element in this list, and I just have one time chance to traverse the list. (I am not allowed to traverse twice ...
5
votes
3answers
1k views

Enumerating all paths in a tree

I was wondering how to best implement a tree data structure to be able to enumerate paths of all levels. Let me explain it with the following example: A / \ B C | /\ D E F ...
3
votes
1answer
642 views

Time complexity of a stack-based tree traversal

What is the time complexity of the implementation of a binary tree traversal below? void Tree::nonRecInOrder() { // nonrecursive inOrder Traversal using Stack Stack< TreeNode* > s ; // ...
1
vote
2answers
470 views

Graph iteration from bottom to top algorithm?

Given this dependency graph: What's a "good" approach to iterate through it from bottom to top? My expected results for each "cycle" are: Iteration step "1": Project B, Project D, Project Z, ...
3
votes
1answer
188 views

Which algorithm would be suitable here? Traversing a series of interconnected nodes, covering them all with minimal repetition

I'm helping out a friend, writing him a program. He is re-recording the soundtrack to the old Lucasarts game Tie Fighter. The game used the iMuse system - each 'track' was made up of a number of small ...
2
votes
1answer
311 views

What's wrong with my tree traversal code?

I have a simple tree, defined thusly: type BspTree = | Node of Rect * BspTree * BspTree | Null I can get a collection of leaf nodes (rooms in my tree "dungeon") like this, and it seems to ...
2
votes
2answers
616 views

Python usage of breadth-first search on social graph

I've been reading a lot of stackoverflow questions about how to use the breadth-first search, dfs, A*, etc, the question is what is the optimal usage and how to implement it in reality verse simulated ...
4
votes
5answers
454 views

Applying a Logarithm to Navigate a Tree

I had once known of a way to use logarithms to move from one leaf of a tree to the next "in-order" leaf of a tree. I think it involved taking a position value (rank?) of the "current" leaf and using ...
2
votes
2answers
583 views

Traversing and inserting into a weird binary tree

Ok, I ran into this tree question which LOOKED simple, but started driving me nuts. The tree given is LIKE a binary search tree, but with one difference: For a Node, leftNode.value < value ...
1
vote
3answers
245 views

Traversing weighted graph through all vertecies ending up at the same point

Is there an algorithm that will allow me to traverse a weighted graph in the following manner? Start at a specific node Go through all vertecies in the graph Do this in the least amount of time ...
1
vote
4answers
535 views

Algorithm to visit all points in a matrix of N (unknown) dimensions

I have a multidimensional matrix that can have any number of dimensions greater than one. Looking for an efficient algorithm that can visit every point in the matrix. Some info about the code: The ...
3
votes
3answers
2k views

Median of BST in O(logn) time complexity

I came across solution given at http://discuss.joelonsoftware.com/default.asp?interview.11.780597.8 using Morris InOrder traversal using which we can find the median in O(n) time. But is it possible ...
2
votes
2answers
1k views

A recursive method to traverse a multi-dimensional array in PHP

I need a method to traverse a multidimensional array in PHP without using function calls itself. Basically I have an array like this: $data = array( 'hoge' => 123, 'foo' => 456, ...
-4
votes
1answer
1k views

grid traversal question [duplicate]

Possible Duplicate: Looping in a spiral Given a grid of any height and width, write an algorithm to traverse it in a spiral. (Starting at the top left and ending in the middle) without ...
4
votes
6answers
5k views

How do I iterate over Binary Tree?

Right now I have private static void iterateall(BinaryTree foo) { if(foo!= null){ System.out.println(foo.node); iterateall(foo.left); iterateall(foo.right); } } Can you change ...
3
votes
2answers
316 views

what is the name of snake-like image traversing algorithm?

The algorithm name is after some mathematician. You can traverse image line by line of course, but you can traverse image using recursive generated path, which the basic blocks looks like: U This ...
0
votes
4answers
1k views

How to write a recursive function that returns a linked list of nodes, when given a binary tree of nodes?

I was once asked of this in an interview: How to write a recursive function that returns a linked list of nodes, when given a binary tree of nodes? (flattening the data) (Update: how ...
4
votes
2answers
786 views

Binary search tree traversal that compares two pointers for equality

I'm reading the Cormen algorithms book (binary search tree chapter) and it says that there are two ways to traverse the tree without recursion: using stack and a more complicated but elegant ...
3
votes
5answers
2k views

Need help in returning from a recursive method

I am trying to trace the path of a node in a binary tree (not a binary search tree). Given a node, I am trying to print the values of the path from the root. I have written the following program. ...
5
votes
2answers
1k views

Construct a Tree

How can I construct a tree given its inorder and preorder traversal? I am just looking for an efficient algorithm.
0
votes
3answers
990 views

Algorithm question: print all the elements on a single given level of a binary tree

I am required to print out(visit) the nodes on a single level of a binary tree. I don't see how this can be done but then again I not very skilled with algorithms in general. I know that in ...
7
votes
11answers
6k views

Traverse Matrix in Diagonal strips

I thought this problem had a trivial solution, couple of for loops and some fancy counters, but apparently it is rather more complicated. So my question is, how would you write (in C) a function ...
0
votes
3answers
4k views

tree traverse recursive in level-first order and depth-first order

Is there any algorithm can traverse a tree recursively in level-first order and non-recursively in postorder.Thanks a lot.

1 2