Tagged Questions
Traverse is the action of iterating over all the elements in a sequence of elements.
11
votes
5answers
1k views
Traverse tree without recursion and stack in C
How to traverse each node of a tree efficiently without recursion in C (no C++)?
Suppose I have the following node structure of that tree:
struct Node
{
struct Node* next; /* sibling node ...
5
votes
2answers
235 views
Rectangular/lattice multiplication
I am trying to implement the rectangular/lattice multiplication in Java. for those who don't know, this is a short tutorial.
I tried some methods wherein I used a single array to store multiplication ...
3
votes
4answers
2k views
How to traverse a stl map/vector/list/etc?
In need to know how to traverse a stl map. I don't wanna use its key. I don't care about the ordering, just a way to access all elements it contains. Is there a way to do this?
3
votes
2answers
2k views
PHP - Find parent key of array
I'm trying to find a way to return the value of an array's parent key.
For example, from the array below I'd like to find out the parent's key where $array['id'] == "0002".
The parent key is obvious ...
2
votes
2answers
62 views
Change content of div when div contains div
I have a structure;
<p class = "foo">"sometext"</p>
<div class = "foo">
<p class = "moo">"sometext"</p>
<div class = "moo">
<p class = ...
2
votes
3answers
41 views
Traversing JavaScript object - what am I missing?
This is a pretty simple question, but I can't figure out what I'm doing wrong. Say I have this object:
features: {
savings: {
link: "test.html",
img: ...
2
votes
1answer
75 views
Stuck on traversing a html dom on a page
Ok. I'm stuck once again and it seems that internet just ran out of traversing a dom with HTML DOM tutorials. I have this page (http://www.nasdaqomxbaltic.com/market/?pg=news&news_id=250910) and ...
2
votes
2answers
271 views
Traverse hierarchy object c#
If I have a Class like below. How do i traverse through it until its property SomeObjects.count = 0
public class SomeObject
{
public String Name { get; set; }
public List<SomeObject> ...
2
votes
2answers
304 views
Batch traverse subolders and rename files
I would like to traverse a folder and all it's subfolders, keep a counter variable of the current file and rename it to $counter$ExistingFileName.
E.g.
$count = 1;
foreach $file in $folder
{
...
2
votes
4answers
112 views
Multi-dimensional array / creating a survey
I have an array like this:
$survey = array(
'Category1' => array(
'Question1' => array(
'Option1', 'Option2', 'Option3'
),
...
2
votes
3answers
460 views
Simple Graph Search Algorithm in SQL (PostgreSQL)
I've implemented a graph of nodes in PostgreSQL (not a tree)
the structure of the table is in this format
id | node1 | node2
--------------------
1 | 1 | 2
2 | 1 | 3
3 | 4 | ...
2
votes
3answers
3k views
Efficiently Traverse Directory Tree with opendir(), readdir() and closedir()
The C routines opendir(), readdir() and closedir() provide a way for me to traverse a directory structure. However, each dirent structure returned by readdir() does not seem to provide a useful way ...
2
votes
8answers
609 views
Traversing an unusual tree in Python
I have an unusual tree array like this:
[[0, 1], [1, 2], [2, 3], [2, 4], [2, 5], [5, 6],
[4, 6], [3, 6], [0, 7], [7, 6], [8, 9], [9, 6]]
Each element of the array is a pair, which means second ...
2
votes
3answers
1k views
DOM: fetch all text nodes in the document (PHP)
I've have the following (PHP) code that traverses an entire DOM document to get all of the text nodes. It's a bit of a ugly solution, and I'm sure there must be a better way... so, is there?
$skip = ...
1
vote
1answer
23 views
How do I traverse a directory in Mozilla Firefox 4.0 and beyond?
Used to do it like this:
// Firefox 3.6 and before; Mozilla 1.9.2 and before
var ext = this.Cc["@mozilla.org/extensions/manager;1"]
.getService(this.Ci.nsIExtensionManager)
...
1
vote
2answers
57 views
JQuery traversing table column
I have a table as follows;
<table>
<tr>
<th scope="col"></th>
<th scope="col">Column One</th>
<th scope="col">Column Two</th>
<th ...
1
vote
3answers
83 views
Traversing a JSON in Python
I am trying to traverse each 'node?' of a JSON objet in python. I am trying to implement a recursive function like
def function(data):
for element in data:
--- do ...
1
vote
2answers
78 views
n-dimensional traverse
I'm implementing the longest common subsequence for n dimensions. Current problem: how do I traverse the n strings? Simply nesting for loops won't work anymore, because I need n of them. What's the ...
1
vote
1answer
121 views
level-order, tree traversal - How to keep track of the level?
How to keep track of the level while traversing a binary tree in level order or breadth-first order?
The nodes in the binary tree have left and right references only.
I want to be able to ...
1
vote
2answers
67 views
Jquery navigate to parent <tr>. Issues with using parent() or closest() selectors
I am not able to achieve something that seems so simple. Not sure where I am going wrong. Please advise.
Goal is to highlight a table row is the checkbox corresponding to it is selected. I have ...
1
vote
1answer
142 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
69 views
Matrix linear indexing
I need to traverse a rectangular grid in continuous manner. Here is an example of what I want, the number means sequence:
+ x
y 0 1 2
5 4 3
6 7 8
At each step I know the index ...
1
vote
1answer
183 views
How to Access Parent Directory in Python
So I have a Python script that was given to me by a friend of mine, but I have no experience in Python. This is the code for it:
from os import path, chdir, listdir, mkdir, getcwd
from sys import ...
1
vote
1answer
60 views
walk / traverse folder in AutoHotkey?
I've searched the ahk docs and the ahk forum, but I can't find a folder tree traversal example. Does anyone have a good example of this for AutoHotkey?
1
vote
0answers
487 views
Android XMLPullParser multiple passes through XML document
I'm trying to use XMLPullParser to parse a large XML document for an Android application. Often I need to re-traverse the document from the beginning.
How would I reset the parser? It seems ...
1
vote
3answers
600 views
C++ print out a binary search tree
Got nothing better to do this Christmas holiday, so I decided to try out making a binary search tree. I'm stuck with the print function. How should the logic behind it work? Since the tree is already ...
1
vote
3answers
962 views
HashMap of HashMaps traversal
I'm trying to retrieve a HashMap<String, Object> that is a value of a HashMap<String, Object> with its key.
So, I have a HashMap<String, Object> that contains other ...
1
vote
2answers
259 views
Jquery: Traversing li and get element within
this question seems easy but I just can't get it right =(
<ul id="myUL">
<li id="item1">
<select ...
1
vote
4answers
107 views
Efficient way of Element lookup in a Python List?
I have a list of files in a directory. I have to process only certain files from that directory. filelist is my desired file-list. How do I go about achieving this? Not interested in a bash solution ...
1
vote
1answer
101 views
Cost of too much database access
I'm wondering if my idea is possible*. I'm doing a project on road networks and I plan to do many database access; meaning, for example, to check if one route is connected to another route, check ...
1
vote
3answers
766 views
Traversing unordered lists using Javascript/Jquery
Lets say I have an unordered nested list:
<ul>
<li>Item a1</li>
<li>Item a2</li>
<li>Item a3</li>
<ul>
<li>Item ...
1
vote
1answer
454 views
Check if LI has “parent” LI using jQuery?
I'm working on the comments section of a WP theme, and the styling requires the use of some clever jQuery in order to make it work right... However, when trying to style admin comments in a long ...
1
vote
2answers
2k views
JQuery traverse DOM and extract node value
I have the following DOM:
<div class="qtip qtip-light qtip-active">
<div class="qtip-wrapper">
<div class="qtip-borderTop"></div>
<div ...
1
vote
2answers
232 views
Structuring leafs in a hierarchical tree
This code fills a tree with values based on their depths. But when traversing the tree, I cannot manage to determine the actual number of children without iterating over the parent node. This is ...
1
vote
1answer
638 views
Traverse Rectangular Matrix in Diagonal strips
I need the same thing done here, but to work with any matrix, not just a square one. Also, the direction of traversal needs to be opposite. I tried to edit the code I found there, but couldn't figure ...
1
vote
3answers
812 views
Traversing an unordered list using jQuery
This should be an easy one, but I'm not finding much online:
I have an unordered list <ul>, with a few list items underneath it <li>, and I'd like to address each one in the list, and act ...
1
vote
2answers
2k views
Traverse a XML using Recursive function
How can I traverse (read all the nodes in order) a XML document using recursive functions in c#?
What I want is to read all the nodes in xml (which has attributes) and print them in the same ...
1
vote
3answers
624 views
How would you implement?: Lots of rules over a tree in C#
I have a data structure that represents C# code like this:
class Namespace:
string Name;
List<Class> Classes;
class Class:
string Name;
List<Property> Properties;
...
1
vote
4answers
2k views
Java - change focus on key press
I am writing a Java Application for Data Entry using Eclipse and SWT. Naturally it has a great many Text objects.
What I would like to happen is that when user enters something into one field focus ...
0
votes
0answers
14 views
prevUntil through tr until td:eq(1) has value
I have a table with a number of cells per row. I select some cell in the middle and want to select all the preceding rows until the row who's second cell has a value. For simplicity picture:
...
0
votes
0answers
19 views
How to set weight to edges in a Directed Cyclic Graph?
Here is what I wanted:
In a Directed Cyclic Graph,
Given any two nodes, how to print all the paths between them?
I used the DFS, which is good. The problem is the Cyclic caused some nodes to ...
0
votes
1answer
59 views
How to parse website and get information
I am trying to parse a website.This is what Im doing I download the source and traverse the data using nokogiri and get the information I needed like links, content, etc. I already have the script ...
0
votes
3answers
81 views
Current working directory
I am currently building some code that traverses through directorys listing all files and paths and file sizes. I am now stuck with the final part of the traverse process which is the if statement to ...
0
votes
2answers
51 views
How to traverse a map by value
Say there is a map: typedef map<int, string> MyMap;
I'd like to traverse it by the string, for example:
3 -> a
1 -> b
7 -> b
2 -> c
One way is to sort this map by its value. But ...
0
votes
1answer
48 views
Traverse Object Structure Javascript [closed]
Possible Duplicate:
How do I enumerate the properties of a javascript object?
I have an object with keys like this:
var OBJ = {
"Some value": {val1: 53, val2: 43},
"Another one": {val1: ...
0
votes
1answer
49 views
Best performance when querying tree structure with EF4.1
This most be a very common question, but I cant find a good answer too it on google.
I have a standard tree structure,
Id
ParentId
Name
ForeignKeyId
My first attempt at a query
return ...
0
votes
2answers
75 views
Traverse a xml tree recursively and push element value into custom class
Whitin a "units" element can be many "unit" elements which again have a "units" element.
I want to write the unitName of each unit into a custom class with prop UnitName AND the unitName of the ...
0
votes
2answers
241 views
error: variable or field declared void
This is actually the program my instructor had provided with us to work with, i had to make several changes thus far to get it to at least compile:
#include <dirent.h>
#include <errno.h>
...
0
votes
2answers
46 views
Checking if a selector matches elements marked by a specific class
I have a generic jQuery selector (a string):
var selector = '#files li div';
and the name of a class:
var myClass = 'folder';
I want to check if the selector matches elements having the class ...
0
votes
1answer
92 views
GWT Tree traversing
is there an easy way of traversing a gwt Tree? I miss some methods like hasChild()..
I need to image the structur of the gwt tree in this way:
1
/ \
2 3
...