i have this following schema
<dataset>
<record>
<A> </A>
<B> </B>
</record>
<record>
<A> </A>
<B> </B>
</record>
</dataset>
Can you suggest an efficient algorithm to parse the 'record's and store them in a c structure?
Straightforward parsing is taking a long time as the number of records is around 1500. Any changes to be made in the schema are also welcome.