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

learn more… | top users | synonyms

0
votes
2answers
16 views

I want to use XPath with XML nodes arguments

I want to search an attribute value that exists in an XML file using XPath, for example to search in the nodes values you type "//ex1/ex2/ex3/text()" but what if i want to get the value of a parameter ...
0
votes
2answers
30 views

Find and fill XML nodes from a PHP object

First of all, sorry about my english. So, I have an XML with a lot of nodes, like: <first> <second> <third/> <fourth/> </second> ...
0
votes
2answers
22 views

Adding xml node on top of file or reverse the loop

I am using xml. Reading the xml-document works fine, adding nodes works fine to but I want the node to add on top of the xml file. Is this possible or is this a nogo? The reason I want this is ...
0
votes
1answer
33 views

Casting char* to a linked list

My linked-list: struct Node{ bool inUse; unsigned int size; Node *next; }; Total bytes = 12 with padding. tmp->inUse = true; tmp->size = size; tmp->next = (Node*)((char*)(tmp ...
-1
votes
1answer
17 views

XSLT on each looped node, output number of preceding nodes containing a specific element

Given this XML <Employee> <Record> <ID>1</ID> <Amount>10</Amount> </Record> <Record> <ID>2</ID> ...
0
votes
1answer
32 views

Javascript compound graphs library

After a long search on the Internet, I didn't find a Javascript library which makes graphs imbricated (compound graphs). All the interesting libraries that I found are using Flash, and I don't want ...
0
votes
0answers
37 views

D3 data visualization using json data and force, stuck in displaying linked node's name,attr etc

I'm trying to show information about a certain node on a d3 force directed graph within a div. On hover, it would be populated something like this: Node Name Neighbouring Node names(if any) So far ...
0
votes
4answers
48 views

How do you remove the first Node in a Linked List?

Sup guys so I'm going over a few of my methods in my Linked List class and I'm getting a logical error when removing a node from a linked list. I was working on my removeFirst() method when I then ...
-2
votes
2answers
38 views

Crash when deleting nodes in a circular list

I got some problems with the algorithm for "clearing" nodes in a circular list: most of times the program crashes and sometimes not. I'm quite sure that the algorithm is ok and I have no clue about ...
0
votes
1answer
27 views

Adding Nodes to Existing XML

The problem i was having is the Root XML was being produced every time it writes to the XML. The Main issue was setting up Child and Defining the Root. From the help of Łza I now understand the Root ...
1
vote
1answer
66 views

How to get all preceding nodes regardless of the current position

Structure of my XML <root> <Q id="a">1</Q> <Q id="b">2</Q> <Q id="c">3</Q> <x> <Q id="d">3.1</Q> ...
3
votes
2answers
65 views

Creating a stack in C, structure for nodes

I have been given a structure for the nodes that will make up my stack but I am having trouble understanding it. struct stackNode { char data; struct stackNode *nextPtr; }; typedef struct ...
0
votes
0answers
13 views

iOS NSXML parsing nodes with colons

I am using NSXML to parse some XML, however there are some nodes with colons in the them and I want to be able to access their attributes. How would I do this? Below is the xml. I want to include both ...
0
votes
2answers
21 views

Use recursion to count the number of nodes whose value field is between min and max, inclusive, from the “cur” node to the end of the list

My attempt at a solution, I know it is not right because the output for the program is incorrect. What am I doing wrong? I have an inner node class, each with value fields.This method should return ...
0
votes
2answers
27 views

Add sub child of a child to a element

The header and child elements are the children of parent. Can I keep header and its children as it is and the remaining subchild nodes of child are to be added to a new element? <parent> ...
0
votes
2answers
39 views

Split first child node from the rest using XSLT

Can anyone help me to split the child nodes using XSLT. Only child1 should be split from rest of the children. <parent> <child1> <child2> <child3> <parent> ...
1
vote
1answer
53 views

Nodes, Type Definitions, how Null works (C programming language) C linked lists

I am struggling to understand something with nodes in linked lists in C. I am given a list of 6 nodes on paper, and I am trying to draw how the nodes change after a few different sets of commands. ...
0
votes
0answers
26 views

Is there any node-based dataflow editing JavaScript library? [closed]

What I look for looks alike vvvv node based dataflow edintor (or ThreeNode which is sadly 1) not a lirary, 2) CofeeScript based with complex dependencies). So is there any node-based dataflow editing ...
1
vote
1answer
45 views

How do you do a Drop-Out Stack in python?

I know you guys like getting specific questions about something, but I can't figure out exactly what it is that I'm doing wrong. Maybe it's a lack of understanding, so I thought I could use some more ...
1
vote
1answer
35 views

Creating an unknown number of Nodes Java

I'm working on a program that implements Dijkstra's algorithm on a series of vertices and their edge weights input by a user. I do not know how many vertices the user is going to input until they ...
0
votes
1answer
13 views

How to link two scene nodes in Ogre?

I know it's an unusual way to search this kind of feature, but is it possible to set an automatic transformations link from one SceneNode to an other ? For example, if I link a SceneNode A to a ...
0
votes
1answer
52 views

Networkx graph: finding if path exists between any node in a given set of nodes and another set of nodes

I have a large undirected graph with hundreds of thousands of nodes and tens of thousands of edges. I have two separate problems: 1) For a set of nodes N = (node[1], node[2], node[3], node[4], ...
-1
votes
1answer
41 views

How can I get rid of random text nodes? [closed]

I'm scraping a website that has a random text node in it's code like this: " Leita að beygingarmynd " Is it possible to get rid of it with javascript?
0
votes
0answers
19 views

how to make a graph data structure from data structures for nodes and arcs?

i have made the following node and arc structs: struct arc { int length; string start; string end; arc(int k,string s,string e) { this->length = k; this->start = s; ...
-1
votes
1answer
33 views

How to find a more complex specific node by ancestor, parent and child nodes

This is a stripped down version of my XML file simple.xml. <Genealogy> <grandParent> <name>bob</name> <surname>Carter</surname> <Parent> ...
0
votes
1answer
7 views

Hudson Node Name from Env Variable - Possible?

I want to execute a job configured in hudson, in various nodes. I don't want to create separate jobs for each node. So is there any way that hudson node name could be passed from environment variable? ...
0
votes
2answers
46 views

Link List, Jamming Console

When i compile this link list my Console Jams after entering the first two intergers. The purpose of the programme is to save the input from scanf into Memory and then output them onto the screen, ...
2
votes
1answer
43 views

segfault to a null pointer C++

WordBinaryTree::WordBinaryTree() { //RootNode is a private WordNode* of WordBinaryTree() RootNode = 0; //just to set it to null... } void WordBinaryTree::AddNode(WordNode node) { //RootNode ...
0
votes
0answers
49 views

Jenkins Slave Nodes Won't Start

I have a simple Jenkins job set up and for some reason certain computers in the office are having trouble connecting as slave nodes. -One computer connects fine, no issues. -One connects using java ...
0
votes
2answers
37 views

XSLT: Selecting nodes and attributes based on attributes

I am quite new to XSLT style sheets. I have done some very basic work with them and now have gotten a project that is testing my abilities. I don't even think I am asking the question the right ...
-1
votes
0answers
32 views

Convert SQL (or any) Path data to JSON structure with child notation

So I have some SQL data that looks like this:- ID Path Description ---------------------------------------------- 136 /Demo Data Site1 330 /Demo ...
0
votes
1answer
78 views

Treeview not finding parent node when adding child node

So I have this Treeview to which I manually add some items. Parent nodes can be added without problems, but when I want to add a child node to a parent node that I search by key, it fails for some ...
-1
votes
0answers
29 views

How to make a route planner algorithm and a “graph” to search through?

I'm working on a small route finder algorithm based on the A* search algorithm. I have the pseudo code for the algorithm and have only a few problems implementing it, nothing worth mentioning yet ...
0
votes
0answers
62 views

Visualise data relationships using Node-Link paradigm in JavaScript?

Which open-source JavaScript framework/library assists in visually traversing data in a graph (node-link) way? Some technical details which illustrate what I am seeking: Requires passing in: ...
0
votes
2answers
29 views

Delete node with simplexml

I have this xhtml : <?xml version="1.0" encoding="UTF-8"?> <html> <head> <meta charset="utf-8"></meta> </head> <body> ...
0
votes
3answers
36 views

Convert multiples xml nodes data into varchar

I want to convert an xml string like this : '<orga_label>ORG1</orga_label><orga_label>ORG2</orga_label><orga_label>ORG3</orga_label>' into a varchar like this ...
0
votes
3answers
35 views

nullpointerexception error removal of node

I'm stuck at this one road and it's really beginning to frustrate me. I think I have everything working properly but this one method. When I remove a Node from my LL I get a null pointer exception on ...
1
vote
1answer
38 views

LinkedList issue printing and deleting

Ok so I've been debating on whether or not to ask and keep this question up to see if I can get some answers. I have fixed most of the bugs but I'm having a huge issue with this LinkedList. Right now ...
0
votes
1answer
73 views

multiple variables stored in single node java linked list

I was curious as to learn how you would add multiple ints to a Node in a LinkedList in java (single circular). I had found a thread on SO and was reading on it but wasn't sure exactly how it worked. ...
1
vote
2answers
27 views

xml group elements by nodename which changes by suffix

I am trying to transform an XML to specific output XML. But I could not group by where N changes for a group of fields. <Balances> <Balances_Line_Item0> ...
1
vote
1answer
44 views

BFS - WordChain/Wordladder

I need some help with a problem. I want to find the longest shortest path between some word and some given endword. All the words have are of length 4. I have a graph where each node represents a word ...
0
votes
4answers
58 views

Infinite loop in Linked List

I am implementing a single linked list. At the moment of executing the program I get an infinite loop :S Not sure what exactly is the problem. Btw, I am not supposed to implement a Link Class due to ...
0
votes
0answers
27 views

Trying to point one node to another node to link the nodes and having some troubles

Alright I'm trying to link one node to another node and I just cant seem to get it to work. Can you give me a tip? I think the error is on line 44 but I'm not sure how to fix it. #include ...
0
votes
2answers
66 views

Add node numbers on a mesh graph in MATLAB

my script plots a mesh grid using: gplot(adj,NC,'-o') where 'adj' is the adjacency matrix and 'NC' is the matrix of nodes' coordinates. It works absolutely fine, except for the fact that it doesn't ...
0
votes
0answers
62 views

Is there any recommended js auto completion for emacs [closed]

I have installed js2.mode and auto complete on emacs24. now i just want a powerful plugin which could auto complete resource in js mode. can anyone give me a suggestion ?
0
votes
1answer
74 views

AVL Tree implementation with nodes or without nodes

We have a class project to implement an AVL tree. Here are two very general implementations: template<class T> class AVLTree { int key; int height; int BF; T data; AVLTree<T>* ...
0
votes
1answer
40 views

Pasting multiple nodes in jsTree

The documentation for the CRRM plugin for jsTree states that the copy() method "Copies a node (prepares it for pasting)" and takes a parameter that "can be a DOM node, jQuery node or selector pointing ...
0
votes
0answers
76 views

Implement DOM Node Methods in VBA Excel

Im trying to retrieve / get data's from a certain using vba. What my problem is im trying this code .document.getElementById('itemlist').tBodies[x].ChildNodes[1].ChildNodes[3].textContent which ...
-1
votes
1answer
87 views

Hash Function C++ using linked list [closed]

Hi i am working on an hash table project. I have an array of Linked list items. And i need to write a hash function using something other than the modulus, what is it i need to do instead of use a ...
-2
votes
1answer
123 views

Hash Table implimentation with a linked list c++ [closed]

So i am working on a project, in which i have to import the periodic table of elements and insert it into a hash table, but to avoid collisions i need a linked list. I have the linked list done. each ...

1 2 3 4 5 18