You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Structures are a very useful tool in coding, and lack of support for it would be a huge handicap for users.
Describe the solution you'd like
We could come up with a simple structure pseudocode syntax, using which users could define their own structures, members and all.
Additional context
This could also easily be used for typedef implementation, another huge tool for users.
The text was updated successfully, but these errors were encountered:
I think majority of algorithms are implemented using structures only, even though it's not explicitly stated so.
For example, BST implementation in Cormen, uses T.root, x.left, etc.
I don't see how one would be able to apply these pseudocodes without structures. And these are important algorithms, I think sudocode should include support for these in the initial stages.
Soon the program could become so userfriendly that one could just write:
BST T
to define a BST, such as in STL
Is your feature request related to a problem? Please describe.
Structures are a very useful tool in coding, and lack of support for it would be a huge handicap for users.
Describe the solution you'd like
We could come up with a simple structure pseudocode syntax, using which users could define their own structures, members and all.
Additional context
This could also easily be used for typedef implementation, another huge tool for users.
The text was updated successfully, but these errors were encountered: