Traversal is the action of iterating over all the elements in a sequence of elements.
0
votes
1answer
25 views
Recursive Graph Traversal
I'm writing a program in Java to solve puzzles from this game:
http://universefactory.net/0/
I've modeled the problem as follows
Node Class:
package model;
import java.util.ArrayList;
...
0
votes
0answers
28 views
NAT Traversal library
I need some libraries which implement NAT Traversal.
I heard about STUN as a try to implement a NAT Traversal standard.
Now I am looking for a library which is implemented in C/C++, because one client ...
0
votes
1answer
21 views
How do I exclude consecutive RelationshipTypes in a neo4j java traversal?
I need to select nodes from a neo4j graphdb based on ordered paths.
I need paths with the following constraints:
1) A path may follow types C, D, and outgoing M
2) a type C must never follow a type ...
-1
votes
0answers
27 views
Looping and showing hex string as checkboxes [closed]
I have a database table with fields such as with From and To as hex like:
From To data
A1234 A1239 Hello
B2000 B4000 World
C3000 C4000 Simple
I want to traverse and show the auto ...
1
vote
2answers
30 views
How to know the points in a line given the starting and end points to traverse the line: any formula?
I'm using AS3. But it doesn't matter of what language am I using. I'm just finding logic on how to solve this problem.
I've done creating a line, drawing with graphics class given the start and end ...
-1
votes
0answers
40 views
2-3-4 Tree Traversal. Specifically Inorder
I'm fairly new to coding and I've started to look at 2-3-4 trees. I've gotten preorder and postorder traversal just by looking at the traversals for binary trees, but inorder has me stumped. This is ...
0
votes
3answers
34 views
How to delete all divs with at least one child using jquery?
I want to delete all the divs who has at least one child using jquery. So for this example I need to delete the divs containing paragraph with 'hello' and 'world'. Can any one please help ?
<div ...
0
votes
0answers
19 views
Passing visit function in graph traversal from instance
I'm setting up a graph traversal/visit class for the first time where all visit functions exist in the graph class and I'm having trouble getting it to work from outside the class.
The function is ...
0
votes
1answer
24 views
angular: deep scope traversal and updating
I have an Angular scope that looks something like this:
{
node_type: 100, node_instance: 001, value: 'pony', show: true, childNodes: {
node_type: 100, node_instance: 011, value: 'cat', show: ...
0
votes
0answers
22 views
Is there any script in php which scans the code and return
Is there any script in php which scans the code and return variables dependancy? at least provide me some algorithm.
I am creating web application auditor, where I want to scan code from it's source ...
-4
votes
1answer
75 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
0answers
36 views
How to traverse through code / create dependacy list in php?
I am working on a project, It will be used to scan the code and tells you the possible vulnerability. for that I want to traverse the code.. for e.g.
function abc($apple,$banana,$mango=FALSE)
{
...
6
votes
5answers
226 views
What is the difference between iteration and traversing?
The past few weeks I have been learning about iterators. I still do not understand the main difference between iterating through a link list and traversing through one. I know that traversing means to ...
1
vote
2answers
39 views
Find “nth” value in BST (C)
I have no idea how to go about this problem.
returns pointer to NAME_VAL pair which is the
nth entry in the sorted sequence.
if i=1, you return the min entry
if i=n, you return the max entry
if ...
0
votes
2answers
69 views
finding longest path in an adjacency list
I have an adjacency list I have created for a given graph with nodes and weighted edges. I am trying to figure out what the best way would be to find the longest path within the graph. I have a ...
0
votes
1answer
69 views
Tree traversal in c++
I have an assignment that is simple enough. I have to create a tree using the this structure:
struct gennode
{
int item;
gennode * firstChild;
gennode * siblingList;
gennode * prevSibling;
...
1
vote
3answers
96 views
Is it possible to traverse a file from bottom up? [C]
How can I traverse a file line by line going from the bottom up? For example, here is my code for traversing it from top to bottom:
void *readFileTB(char *str1)
{
int size = 1024;
char ...
2
votes
0answers
58 views
C++ general tree iterator - backward paths
I'd like to define an iterator over a general tree. Here is an example(from wikipedia) of binary one:
Iterator should allow me to traverse this tree structure in pre-order. I can easily achieve ...
0
votes
1answer
44 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
+-- --+ +-- --+
| || | | || |
| | == ==++==
| ...
1
vote
2answers
61 views
JQuery: Order of events and traverse the DOM
I try the following:
One ul for the Links, another for the slides
<ul class="infoslider">
<li><a data-orbit-link="slidegroup1" href="#">Slides1</a></li>
...
1
vote
2answers
55 views
Selecting next two elements after clicking one. (jquery)
I have a table like such:
<table>
<tbody>
<tr class='clickme'>
<td>...</td>
</tr>
<tr class='hidden1'>
<td>...</td>
</tr>
<tr ...
3
votes
4answers
269 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 ...
0
votes
0answers
18 views
Tab Traversal through JTextAreas while Ignoring JButtons, JCheckBoxes, etc
I am currently facing the problem of tabbing through JTextAreas in my Java application. Currently tabbing will also pick up various JButton or CheckBoxes in the traversal process. This would be simple ...
0
votes
2answers
138 views
Print out or Traverse the Linked List in C++
I want to print out the linked list that I've just made.
I've figured out how to print out the first and last element but can't think of a way to print the whole list.
I need to move from first ...
0
votes
0answers
83 views
AVL Tree Rebalancing and Traversing Errors in C
CODE:
int main(void) //AVL Tree
{
TP TreeP=(TP)malloc(sizeof(struct AVLTree)); //TP is a Pointer to a Tree Structure
InitializeTree(TreeP); //Initializes the Tree
FILE * FP;
int I=0;
...
3
votes
0answers
119 views
OpenCL traversal kernel - further optimization
Currently, I have an OpenCL kernel for like traversal as below. I'd be glad if someone had some point on optimization of this quite large kernel.
The thing is, I'm running this code with SAH BVH and ...
0
votes
2answers
50 views
traverse x number of nodes inorder
I know this is probably a simple question but it's been a while since I've done any C programming. I am trying to perform an inorder traversal on x nodes where x is some number I pass to the ...
1
vote
1answer
312 views
jQuery list item Menu
We have a main menu, that could consist of any number or parent child items. We want all children ULs hidden to start with, then on click of a given li it's child UL shows.
You can see this working ...
0
votes
2answers
46 views
traversing through a tree
I want to write a function which returns all the elements in a tree in a list. I'm not allowed to use global variables though. Here's what I tried:
def traverse(current node):
if no left ...
1
vote
0answers
83 views
Post traverse recursion in VBA to calculate a consolidated status
My apologies as I'm new to VBA. I'm looking for a post-traverse example to resolve the below problem. I'd like to recursively traverse the tree in column A to calculate a consolidated status. As in ...
0
votes
1answer
74 views
Maximum Height 2-3 Tree
To find the maximum height of a 2-3 Tree, can you keep traversing from the root node to its left child node, going all the way down until you run into a leaf?
This is fact: Since all leaf-nodes are ...
1
vote
1answer
575 views
jQuery - add bootstrap dropdown classes to existing UL LI menu structure
I think my issue can be solved with jQuery.
Situation:
I have a certain CMS (photostore script). It has a categories menu item. Categories can be added by users, and moved and deleted by admins. So, ...
0
votes
3answers
394 views
Binary search tree and in-order traversal
I am trying to quickly implement a Binary search tree in Java. What is the best class to use that has methods for in-order traversal?
(I have heard of TreeMap class. But it looks like the class does ...
0
votes
1answer
43 views
Weakly connected graph traversal from least number of nodes
I've been given the following exercise: There's an unweighted, directed, weakly connected graph with n nodes (n < 1 000 000). We want to traverse the whole graph, starting from the least number of ...
1
vote
4answers
139 views
Traversing queue in C++
I have a C++ queue that I need to print. It's easy to print the first node and then delete it, then print the first node again which would then be the second node. But that would erase the entire list ...
0
votes
1answer
29 views
Website Data Crawler, posting data and traversal
Although there have been quite some posts on these topic, my question is little bit specific.
I need to parse few website and once done, I need to send some data to it. For example, say website A ...
0
votes
1answer
78 views
find Kth element in a Binary Search tree
I am a beginner and I'm learning about Binary Search Trees. I'm having trouble figuring this out. I want to return the k-th element of the in-order traversal of the binary search tree. How can I keep ...
3
votes
4answers
122 views
Python: Simplify many if-statements
I have a function that traverses a tree and returns the elements as a list. Is there a way to simplify all the if statements in treeToList::traverse, because it looks sort of redundant?
...
2
votes
4answers
58 views
Using jQuery closest() method with class selector
$(this).closest(".fieldfilters");
This returns nothing for me. The HTML structure is like this:
<div class="fieldfilters" >
<div class="filtri_ul_list">
<ul>
...
0
votes
1answer
41 views
Websphere 8.x traverse global JNDI tree
Is there an easy way to traverse over the global JNDI tree of one cluster node.
I know the dumpNameSpace.sh script but I want to do this inside a servlet.
I want to list all entries of the global ...
1
vote
2answers
40 views
Convert an original binary tree to have it's decorates as the preorder indexes
I've had a go, and it works for the left subtree but not the right.
I'm close but my logic is wrong, can anyone help correct and explain the logic to this.
public static MyNode ...
1
vote
1answer
74 views
Traversing the XML response from Yandex API using PHP
I am creating a metasearch engine using Yandex API. Yandex gives result in XML format. So we need to traverse the XML response inorder to get the different fields like URL,title ,description etc.
...
0
votes
1answer
66 views
Traversing a level-oriented structure
I have a linear data structure where every node has a level. The parent node has a level of 1, a node that is child of the parent has a level 2, a node that is child of child has node of 3, another ...
0
votes
0answers
15 views
Uniquely identify a tree with tree traversals
It's said at geeksforgeeks.org that the following combinations can uniquely identify a tree.
Inorder and Preorder.
Inorder and Postorder.
Inorder and Level-order.
Could someone explain why?
3
votes
1answer
82 views
How to approach this tree traversal
It has been a while since I have had to do tree traversal and would like some input. Here is a sample tree:
The tree is my ASP.NET page. This page is made from 2 master pages and the content page. ...
0
votes
0answers
50 views
Jquery XML/RSS feed traversing the Object, unable to get the data I need
Thank you for your help in advance.
I'm trying to output some data from a RSS feed, so far using this log I can view whats in the image, but I cant figure out how to grab the content value (I've ...
2
votes
1answer
575 views
Traverse a graph represented in an adjacency matrix
I am wanting to use the depth-first and breadth-first methods for traversing a graph. I have done this on a simple list of nodes before, but I have never tried it with an adjacency matrix and I ...
1
vote
2answers
1k views
Traversing through all nodes of a binary tree in Java
Let's say I have a simple binary tree node class, like so:
public class BinaryTreeNode {
public String identifier = "";
public BinaryTreeNode parent = null;
public BinaryTreeNode left = ...
0
votes
2answers
62 views
setting back reference to parent in each tree node IE8 Out Of stack space
Continuied from json back reference.
I just want to travarse a hierarchy and set a property parent to its parent node. so that its both way travarsable
function attach_back_reference(hierarchy, ...
0
votes
2answers
52 views
How to traverse after disable-output-escaping
I have a XML like this -
<DOCUMENT>
<SERVICE>
<ID>1338</ID>
<NAME>
<EN>this is an english name</EN>
<DE>this is a german ...



