Tagged Questions

Nodes are the basic units used to build data structures such as linked lists and trees.

learn more… | top users | synonyms

10
votes
1answer
50 views

zend custom module

I am trying to build my own zend module (.so) We have multiple functionality that can be done in our own module which will improve our performance on a high traffic website (50k+ visits a day). ...
10
votes
4answers
1k views

Speeding up xpath

i have a 1000 entry document whose format is something like <Example> <Entry> <n1></n1> <n2></n2> </Entry> <Entry> ...
8
votes
5answers
3k views

Why is NULL undeclared?

I have a problem with this struct contructor when I try to compile this code: typedef struct Node { Node( int data ) // { this->data = data; previous = NULL; // Compiler ...
6
votes
3answers
401 views

Wormhole Attack Implementation -Sensors

I am trying to implement a wormhole attack detection program for network sensors. I have looked around the internet for source code on this, but have found none. Does anyone know where to find source ...
6
votes
1answer
303 views

is there anyway to have images as the nodes in microsoft glee

i see this post but i can't figure out any way to have a node represented as an image and have the text be a label below the node. Does anyone know if this is possible using Microsoft GLEE?
5
votes
4answers
487 views

Java Maze shortest path 2d int array

I am currently stuck on a project. My aim is to use Dijkstra's algorithm. I understand that I start at point (0,0) I look at the two nodes next to the start point and then I move to the smallest ...
5
votes
2answers
1k views

How to delete/create databases in Neo4j?

Is it possible to create/delete different databases in the graph database Neo4j http://neo4j.org/ like in MySQL? Or, at least, how to delete all nodes and relationships of an existing graph to get a ...
5
votes
7answers
493 views

Drawing graphs on java

I want to draw graphs (nodes and edges) in Java. However, since I don't know how to go about it, I would like to have some advice before starting. How should I do this? use Graphics2D package, ...
5
votes
1answer
277 views

Get graphviz to draw nodes above edges

Is there any way to force graphviz to always draw the nodes above edges even if the edge is drawn over (or preferably under) the node? So far I have tried ordering them and different layer options ...
5
votes
2answers
708 views

Simple XML - Dealing With Colons In Nodes

Im trying to read an RSS feed from Flickr but it has some nodes which are not readable by Simple XML (media:thumbnail, author flickr:profile, ...) How do I get round this? Im trying to get the ...
4
votes
3answers
254 views

Delete selected parent node and child nodes - Collection was modified; enumeration operation may not execute

I have treeview control with one level of parent and child nodes, each node is having a checkbox for selecting nodes after selection if I click remove button I want to delete child or parent what ever ...
4
votes
1answer
138 views

How do I get Python XML to stop having wasted Child Nodes

I have a simple XML document I'm trying to read in with Python DOM (see below): XML File: <?xml version="1.0" encoding="utf-8"?> <HeaderLookup> <Header> ...
4
votes
3answers
337 views

xslt copy-of without children

hi i have a sitemap xml document that looks something like this <pagenode title="home" url="~/" fornavbar="true"> <pagenode title="admin" url="~/admin" fornavbar="false"> <pagenode ...
4
votes
3answers
527 views

recipe for adding Drupal node records

I am looking for a recipe for adding Drupal node records. I have identified three tables. node_revisions nid=249 - vid + 1? vid=248 - auto-increment node: nid=250 - vid + 1? vid=249 - ...
4
votes
2answers
763 views

DOM node child collections--what's the difference?

What's the difference between the children and childNodes collections of a node? And childElementCount and childNodes.length?
3
votes
1answer
35 views

XML search for a node from an array and add new data to a new node

From this tutorial - section on Adding nodes over at PHPFreaks, I did post over there but have had no replies strange as the tutorial was written by them. http://www.phpfreaks...ndling-xml-data When ...
3
votes
2answers
62 views

Counting the number of properties in a JavaScript object

So I have this JavaScript literal that is displaying a tree structure using arborjs. var data = { "nodes": { You: { 'color': 'green', 'shape': 'dot', ...
3
votes
1answer
59 views

Finding a keyword in a node and getting the node name in DOM

I want to search a DOM for a specific keyword, and when it is found, I want to know which Node in the tree it is from. static void search(String segment, String keyword) { if (segment == null) ...
3
votes
2answers
170 views

XSLT display ALL XML tag contents

I am new to using XSLT. I want to display all of the information in an xml tag in my xsl formatted page. I have tried using local-name, name, etc and none give me the result I want. Example: ...
3
votes
1answer
426 views

C# Find And Replace XML Nodes

Edit: I decided to take the LINQ to XML approach (see the answer below) that was recommended and everything works EXCEPT that I can't replace out the changed records with the records from the ...
3
votes
1answer
116 views

Need help understanding .Net Collection behaviour for a TreeNodeCollection

I have a ASP.net page that contains a TreeView that is updated dynamically. I have encountered a problem using the TreeNodeCollection that I can not figure out the reasons behind. The following code ...
3
votes
2answers
220 views

Sorting nodes visually in Drupal

I have created a photo gallery for several web sites using CCK. I created a new content type and added a numeric select list field that allows the client to change the order of the photos in the ...
3
votes
1answer
82 views

Is it possible to get two different relation times between two nodes?

I am new to Neo4j & just playing to learn in deep. I have a small doubt like, if I created two nodes in the space and provided relationship and also the system time (to know at what time they ...
3
votes
4answers
570 views

Graph auto-layout algorithm

To simplify the problem, I have a graph that contains nodes and edges which are on a 2D plane. What I want to be able to do is click a button and it make the automatically layout the graph to look ...
3
votes
3answers
225 views

How to calculate leaf nodes in a nested data structure in Java?

I have a structure like this of what we'll call Box objects. Box--+---Box----Box | +---Box-+--Box | +--Box | +--Box I'm trying to ask ...
3
votes
1answer
525 views

How to determine active node in a failover cluster from c#.net 3.5

We need a way to determine from code which node of an application cluster is currently active. Is there a way to do this using C#?
3
votes
1answer
1k views

xsl:variable contains nodeset. How to output nth node of variable?

I am transforming an XML document. There is an attribute @prettydate that is a string similar to "Friday, May 7, 2010". I want to split that string and add links to the month and the year. I am ...
3
votes
2answers
217 views

Using XSD to validate node count

I don't think this is possible but I thought I'd throw it out there. Given this XML: <people count="3"> <person>Bill</person> <person>Joe</person> ...
3
votes
5answers
467 views

Java - changing the value of a raw type variable. Possible?

I'll start by saying I am a Java (/programming) newbie and this is my first question on the website. Just learnt how to make an ordered list in Java using recursive nodes. Everything was easy until I ...
3
votes
4answers
375 views

How to print out a BST in C++

My C++ program creates a binary search tree. I know how to print out the values in pre-order, post-order, and in-order. However, I want to do something a little more difficult. I want to print out ...
2
votes
2answers
26 views

XSL check to see if any child node has attribute

I have the following XML: <record> <d989 p="Apples" t="Apples"/> <d990 p="Oranges" t="Bananas"/> <record_group_1> <d991 p="Mouse" t="Mouse and Cat"/> ...
2
votes
3answers
46 views

Binary Search Tree root is working, but it can't have any children?

So I'm trying to create my own BST for a spellchecker because I want to additional functionality (find nearby nodes for suggestions). Anyways, I can create the root node, but after that it doesn't ...
2
votes
1answer
70 views

How do I delete a hidden HTML element?

I'm trying to delete an HTML element after changing its visibility to hidden, but I get the following error when I run the following code. It looks like I can't get a handle on the element because it ...
2
votes
2answers
68 views

javascript XSLT nodes, selecting the first of a group (merge-like)

after reading some of the merge posts out here, my question appears to be simpler and I am not capable to find out the answer. So I post a new question. The original xml <data> ...
2
votes
3answers
89 views

Unable to add nodes to existing Cassandra Cluster

We have cassandra cluster of 6 nodes on EC2,we have to double its capacity to 12 nodes. So to add 6 more nodes i followed the following steps. 1 Calculated the tokens for 12 nodes and configured the ...
2
votes
1answer
96 views

hadoop master node slave node datanode

I am Riyas and new in hadoop. if a master node goes down what happened to the cluster? Any slave node can act as a master? Is it need any additional configuration? Any one help me please.
2
votes
2answers
44 views

selecting certain strings from a linked list

I have a linkedList using nodes. I have it printing out alphabetically but now I'm trying to print out the people whose names begin with a certain letter that the user ask for. For example: printing ...
2
votes
2answers
54 views

recursive nodes

I'm trying to understand within my lesson how to read the below function called printBackward. How is it that when I type printBackward(node1) and my output is 3,2,1 which is what it's suppose to do. ...
2
votes
1answer
69 views

ANTLR3 Hetero nodes are not created

I am trying to create a heterogeneous tree based on a sample provided here: http://www.antlr.org/wiki/display/ANTLR3/Tree+construction#Treeconstruction-Heterogeneoustreenodes I have created a grammar ...
2
votes
2answers
110 views

doubly-linked list confusion

In my class I have an assignment to create a Number class, which has operations for arithmetic. (Add/subtract/multiply/etc.) There is one part I am confused about - the doubly-linked lists. The only ...
2
votes
2answers
98 views

Javascript: childNodes.length showing too many elements?

I'm getting some weird results while parsing some XML in JavaScript. I have the following XML in an external file: <?xml version="1.0" encoding="UTF-8" ?> <alerts> ...
2
votes
1answer
96 views

Importing Drupal 5 content into Drupal 6

I need to import several thousand nodes from a Drupal 5 sql dump into a Drupal 6 website. I tried using Node Import and Import/Export API but very little success... any ideas as to how this can be ...
2
votes
1answer
193 views

Coloring walk edges in networkx

I've written a simple code to generate a random walk in a given graph G using the networkx library.. Now, as i take the walk, I want the edges to get colored and drawn using matplotlib.. say in a ...
2
votes
2answers
111 views

Grabbing nodes that aren't descendants of other nodes, excluding the current context

So, I have no idea how to really word this question. I want to have a list of nodes, and only select the one node, but not the nested node. For example: <root> <my_element> ...
2
votes
1answer
244 views

Is it possible to display one object multiple times in a VirtualStringTree?

I realize that I really need to rewrite my programs data structure (not now, but soon, as the deadline is monday), as I am currently using VST (VirtualStringTree) to store my data. What I would like ...
2
votes
3answers
210 views

Forest of tree nodes C++?

Hey, I am trying to create a "forest" of tree nodes. A user will input two forests.. For example, Forest1 : a _ _b c where b is a child tree/node of a. Forest2: d e _ _f _ _ _ _g _ _h where d is ...
2
votes
5answers
368 views

Counting left-child nodes in a Tree

I am supposed to implement a recursive method that counts the amount of left-child tree nodes. My code so far is: private int countLeftNodes(IntTreeNode node){ int c = 0; if (node != null){ ...
2
votes
1answer
160 views

JavaScript: How to remove tags from node?

In a previous question someone put me on to "rangy" http://code.google.com/p/rangy/. It's interesting even if I don't fully understand it. I am not a JavaScript person. However, I have managed to do ...
2
votes
4answers
244 views

Xpath: filter out childs

I'm looking for a xpath expression that filters out certain childs. A child must contain a CCC node with B in it. Source: <AAA> <BBB1> <CCC>A</CCC> ...
2
votes
2answers
104 views

What does it mean to expand a node?

I'm trying to understand the algorithm for a Depth-Limited-Search on wikipedia, and I'm trying to figure out what exactly it means to expand a node. I attempted to search for an answer but all I got ...

1 2 3 4 5 7