nodes

how to organize drupal content in next case...

i need help how to organize nodes of drupal cms. i have three kind of users (three additional user groups). nodes are accessible only if users are logged in. users from first group can access to all nodes, that are created by all users (all users group). users from second group can access only to nodes created by them self. users f...

SVG paths, figuring out how the path is drawn by the SVG file

All, We have an SVG file with an outline of a dress drawn in it. Now we want to identify the nodes of this dress so that, similar to SVG-edit, the path of the file can be identified and manipulated (in SVG-edit, after drawing an irregular shape, you click on the arrow button (left first button) and double click the shape drawn to see th...

the # of internal nodes

THis Q is in data structures that is: Write a recursive algorithm that will, given the root node of a tree, calculate the number of internal nodes of the tree? the internal nodes is root /\ internal nodes internal nodes / \ / \ leaf leaf leaf internal nodes...

Access to Leafs of a TreeNode in a Ext JS Tree

Hello StackOverFlow, I am using the Ext JS library for creating my application. I have a tree panel that has tree nodes and children tree nodes. These tree nodes have leafs that I would like to be able to access. I've been searching for a while, but cannot find a function of property to access the leafs :( Some code is here: var i;...

How to visualize a directed graph with ordered edges?

I want something I can easily imagine. It's hard to reason with crossed arrows and edges colored by order. I don't want the nodes replicated, however. That's more load on the brain. ...

C# treenode node text

I'm adding Nodes to TreeView dynamically. I'm just creating labels and add them to nodes. My treeView looks like that: TreeView 1 -Node 1 - Node 1.1 -Node 1.1.1 -Node 1.1.1.A -Node 1.1.1.B -Node 1.1.2 -Node 1.1.2.A After click nodes, i want only do something if clicked node is: Node 1...