1
vote
3answers
84 views
How CSS and DOM is implemented in the browser?
This is a pretty academic question. I'm wondering how the browser is implemented as in what data structure or algorithm is used to map a CSS selector to a particular DOM element. Is it accomplished …
3
votes
6answers
187 views
Generating all possible trees of depth N?
I have several different types of tree nodes, each of which may have anywhere from 0 to 5 children. I'm trying to figure out an algorithm to generate all possible trees of depth <= N. Any help …
0
votes
5answers
410 views
populate treeview from a list of path
Hi,
I'm trying to populate a treeview from a list of folder path, for example:
C:\WINDOWS\addins
C:\WINDOWS\AppPatch
C:\WINDOWS\AppPatch\MUI
C:\WINDOWS\AppPatch\MUI\040C
…
2
votes
2answers
259 views
How do I marshall a recursive struct to c sharp?
Hi,
I have an unmanaged struct I'd like to marshal to c sharp that looks basically like this:
struct MyStruct{
/* ... some stuff ... */
int numChilds;
MyStruct *childs;
}
I believe …
8
votes
7answers
503 views
Confusing […] List in Python: What is it?
So I was writing up a simple binary tree in Python and came across [...]
I don't believe this to be related to the Ellipsis object, more it seems to have something to do with an infinity loop (due to …
