c# - A data structure like Queue with access to last element -
I need a data structure like a queue only at the end of the cue, only the first element can be extracted and new elements are added You can. And I also need access to the last element.
   I wonder if there is any kind of data structure built into it?       The C # class is exactly what you need.    See    System.Collections.Queue  requires all but the last feature.   
 
  
Comments
Post a Comment