traverse

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 b1</li> <li>Item b2</li> <li>Item b3</li> <ul> <li>Item c1</li> <li>Item c2</li> <li>Item c3</li> ...

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 linked list */ struct Node* parent; /* parent of current node */ struct Node* child; /* first child node */ } It's not ho...

Cost of too much database access.

Hi! 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 database if connection exist? I have predefined information about the routes so I want to use them as mush as possible, but I'm worried tha...

Searching for the path on a Huffman Tree

I'm working on a Huffman tree and I'm trying to figure out how to traverse the tree to find the node that has the character that I'm looking for. While searching the tree i need to keep a string of the path that is taken to the node that I'm looking for using 1's and 0's (0 left 1 right). How can i do this? ...

How to Traverse SharePoint Wiki to Print Hierarchical Pages into One PDF or to a Printer?

I am not a Sharepoint programmer, I'll admit up front. But I'm a user, and I know if I find a solution online it'll be a lot faster than waiting for my I/S team to find it.... I am building a wiki with a main page and one level deep of subsidiary pages. (I don't want to debate if it should be a wiki or not... I'm looking for shared acce...

Traversing an ftp folder with python

I need to write a python script that traverses a folder on a FTP server. for file in ftpfolder: #get it #do something untoward with it Snippets and non-wheel-reinvention advice welcome. ...

PHP - Code to traverse a directory and get all the files(images)

i want to write a page that will traverse a specified directory.... and get all the files in that directory... in my case the directory will only contain images and display the images with their links... something like this How to Do it p.s. the directory will not be user input.. it will be same directory always... ...

windows python script to traverse directory to remove folders, restart PC and continue the next line of the script?

I want to remove a incorrectly installed program and reinstall it. I can remove the program with subprocess.Popen calling the msiexe on it and install new program the same way BUT ONLY with two independent scripts. But i also need to remove some folders in C:\Programs files and also in C:\Doc& Settings. How can i traverse through the dir...

Prolog, find minimum in a list.

Hi, in short: How to find min value in a list? (thanks for the advise kaarel) long story: I have created a weighted graph in amzi prolog and given 2 nodes, I am able to retrieve a list of paths. However, I need to find the minimum value in this path but am unable to traverse the list to do this. May I please seek your advise on how t...