Recommendations for container and algorithm library.
-
Hello, I want to use containers that are feature rich and have corresponding iterators that can modify the object on the fly. Also, I would like to have at my disposal a set of common algorithms that I can use with the containers/iterators. I was wondering if there is anything like that out there besides the .NET Framework Collections that I can use. Can anyone recommend any library that is available? Thanks.
-
Hello, I want to use containers that are feature rich and have corresponding iterators that can modify the object on the fly. Also, I would like to have at my disposal a set of common algorithms that I can use with the containers/iterators. I was wondering if there is anything like that out there besides the .NET Framework Collections that I can use. Can anyone recommend any library that is available? Thanks.
Is this a troll ? You're describing the STL, and it's not available in C#. Christian I am completely intolerant of stupidity. Stupidity is, of course, anything that doesn't conform to my way of thinking. - Jamie Hale - 29/05/2002 Remember that amateurs built the ark. Professionals built the Titanic.
-
Hello, I want to use containers that are feature rich and have corresponding iterators that can modify the object on the fly. Also, I would like to have at my disposal a set of common algorithms that I can use with the containers/iterators. I was wondering if there is anything like that out there besides the .NET Framework Collections that I can use. Can anyone recommend any library that is available? Thanks.
-
Is this a troll ? You're describing the STL, and it's not available in C#. Christian I am completely intolerant of stupidity. Stupidity is, of course, anything that doesn't conform to my way of thinking. - Jamie Hale - 29/05/2002 Remember that amateurs built the ark. Professionals built the Titanic.
-
As a collection, I can get by with ArrayList, but I also need to utilize varies algorithms dynamically to operate on the values in the ArrayList. Is there a way to do this with .NET besides writing my own, or is there a library available that I can use?
-
As a collection, I can get by with ArrayList, but I also need to utilize varies algorithms dynamically to operate on the values in the ArrayList. Is there a way to do this with .NET besides writing my own, or is there a library available that I can use?
I believe you CAN specify sorting algorithms for ArrayList ( what a dumb name - is it an array, or a list ? ), but beyond that, you're on your own. Christian I am completely intolerant of stupidity. Stupidity is, of course, anything that doesn't conform to my way of thinking. - Jamie Hale - 29/05/2002
-
As a collection, I can get by with ArrayList, but I also need to utilize varies algorithms dynamically to operate on the values in the ArrayList. Is there a way to do this with .NET besides writing my own, or is there a library available that I can use?