A
Alin
Hello
Let me introduce a nice problem:
1. A system S
2. System is composed by modules (Module1, Module2, ... Modulen)
3. Every module contains functions definitions. k-th module contains
functions definitions: Functionk1, Functionk2, ...Functionkm
4. All module can use any function from any module.
For example:
Module3 use Function12 which is defined in Module1.
Module4 use Function76 which is defined in Module7.
Module5 use Function12 which is defined in Module1.
So... Which is the best data structure which can be used? Why?
From my side the "natural" structure seems to be a directional graph
whith multi-vertex...
Let me introduce a nice problem:
1. A system S
2. System is composed by modules (Module1, Module2, ... Modulen)
3. Every module contains functions definitions. k-th module contains
functions definitions: Functionk1, Functionk2, ...Functionkm
4. All module can use any function from any module.
For example:
Module3 use Function12 which is defined in Module1.
Module4 use Function76 which is defined in Module7.
Module5 use Function12 which is defined in Module1.
So... Which is the best data structure which can be used? Why?
From my side the "natural" structure seems to be a directional graph
whith multi-vertex...