C# Linked List

  • Thread starter Thread starter Seefor
  • Start date Start date
S

Seefor

Hi, is there a nice Linked list class available which has methods for
adding, deleleting, inserting before, and inserting after that someone has
used and knows works? before I write my own...
 
Since I believe it is implemented as a linked list under the hood, it should
perform quite well. I've not tested it - I've only tested the Queue, but
it's quite fast.

--
Chris Tacke
Co-founder
OpenNETCF.org
Are you using the SDF? Let's do a case study.
Email us at d c s @ o p e n n e t c f . c o m
http://www.opennetcf.org/donate
 
Both methods Add and Insert in the ArrayList operate internally with an
array and implement the following operations:

// index equals to size for Add method
_items[index] = value;
_size++;

As you can see it should be enough fast.
 
Sergey Bogdanov said:
Both methods Add and Insert in the ArrayList operate internally with an
array and implement the following operations:

// index equals to size for Add method
_items[index] = value;
_size++;

As you can see it should be enough fast.

thanks for the info
 
Back
Top