Does anyone knows, how to represent a complex electric circuit with loops, flows in XML format?
The efficient way to parse it?
Efficient data structure to store parsing data, from which we can again create XML?
Thank you.
|
Does anyone knows, how to represent a complex electric circuit with loops, flows in XML format? The efficient way to parse it? Efficient data structure to store parsing data, from which we can again create XML? Thank you. |
|||
|
There are standard XML parsers (e.g. DOM for in-memory and SAX for event-based processing) that you should be using. You can represent a circuit in XML pretty easily - it's nothing more than nodes and connectors of different types. Write a schema that represents them. I'm picturing something simple, like this one for a serial RC circuit:
|
|||
Efficient data structureandXMLbelong in the same sentence... – nfechner Nov 17 '11 at 12:25