4
votes
5answers
671 views
Getting a modified preorder tree traversal model (nested set) into a <ul>
Hello everyone,
I am trying to get my data which is hierarchically set up with a tree traversal model into an < ul> in order to show on my site.
Here is my code:
function ge …
0
votes
7answers
126 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 (i …
1
vote
5answers
537 views
C# Graph Traversal
This algorithm does a great job of traversing the nodes in a graph.
Dictionary<Node, bool> visited = new Dictionary<Node, bool>();
Queue<Node> worklist = new Qu …
1
vote
1answer
228 views
NAT Traversal with Java
I'm trying to find a way to communicate between two NAT-ed nodes using Java. My requirements pretty much align with the ICE-specification; i.e. I want to try STUN first and then fa …
1
vote
5answers
1k views
C# graph traversal - tracking path between any two nodes
Looking for a good approach to keep track of a Breadth-First traversal between two nodes, without knowing anything about the graph. Versus Depth-First (where you can throw away the …
0
votes
2answers
108 views
How to create a linked list of nodes that are contained in the max-Depth of a Binary Tree using Java
I've already created the Binary Tree and Linked list classes, I'm just in need of an algorithm that prints ONLY the nodes of the largest path. The height and size of the Binary Tre …
0
votes
3answers
60 views
jQuery: find next table-row
I have a table, containing rows, contaning cells - and some of them contain an img as follows:
<img id="FormView1_btnSave_row1%1%new" style="border-width: 0px; cursor: pointer; …
2
votes
4answers
114 views
jQuery: Given just an element ID name, how do it find its position in the dom relative to its parent?
This one has me stumped.
<div id="container">
<div id="store"></div>
<div id="contact"></div>
</div>
I'm looking for the contact divs …
1
vote
3answers
82 views
Jquery tranversing DOM to find consecutives values
Thanks for looking, all helpful answers are voted up.
This is my markup. I'm trying to find 2 consecutive divs cmk1 and cmk2 with the content RIGHT and HERE in consecutive order.
…
0
votes
0answers
15 views
copying a bst to a treeSet
I have to write a method that returns a set of all elements in a bag with no duplicate entries allowed. The data is held in a BST, and I'm trying to do this by using a TreeSet, but …
1
vote
4answers
99 views
What is the most efficient way to retrieve the column index for rows affected by “rowspan”?
Consider the following table:
<table>
<thead>
<tr>
<th scope="col" />
<th scope="col">A</th>
&l …
1
vote
7answers
108 views
traversing div’s of the same class
Hi,
i have 5 div's of the same class but different id stacking on top of each other. how do I traverse them using javascript? they are named div1, div2, div3, etc...
also, how do …
3
votes
3answers
172 views
unique path in a directed graph
Hi,
I'm designing an algorithm for class that will determine if a graph is unique with respect to a vertex v such that for any u <> v there is at most one path from v to u. I'v …
0
votes
1answer
40 views
HTML Traverse and Find Best Practices
Hey I was thinking about making some crawlers so that I can get an URL and traverse through the html and just get certain things I might need/want. I was thinking about using Php + …
2
votes
2answers
161 views
How would I traverse elements between two known elements in the dom using jquery?
I want to allow the user to click a start point and then click an ending point and be able to manipulate various form elements between the two points that were selected.
The page …
