Re: General tree assignment in C
- From: kwikius <andy@xxxxxxxxxxxxxxxxxxxxxxxxx>
- Date: Tue, 29 Jan 2008 15:00:23 -0800 (PST)
On Jan 28, 1:12 pm, "Ivica" <prljavi_blu...@xxxxxxxxxxx> wrote:
Create program for defining hierarchical file-system structure in which node
can be file or subdirectory with limitation that file can only be a leaf.
<...>
It's hard to find any examples for general trees in C, just binary trees are
around and that makes me a huge problem. :-\ I would really appreciate any
kind of help. Thanks in advance.
Why does it have to be C?.
trees are classic examples where an OOP style works well. You really
need a language that supports runtime polymorphism in the language,
e.g Java, C++, C#
C is very poor for this use (its possible but ugly) which is I would
guess why there are few examples.
regards
Andy Little
.
- Follow-Ups:
- Re: General tree assignment in C
- From: Ivica
- Re: General tree assignment in C
- References:
- General tree assignment in C
- From: Ivica
- General tree assignment in C
- Prev by Date: Re: Decision Tables
- Next by Date: Re: Decision Tables
- Previous by thread: Re: General tree assignment in C
- Next by thread: Re: General tree assignment in C
- Index(es):
Relevant Pages
|