kzhereb / kpi-acts-ta2020

Materials for "Algorithm theory" course
MIT License
0 stars 0 forks source link

Q03.2.Які реалізації списків використовують стандартні бібліотеки різних мов?/What implementations of lists are used standard libraries of different languages? #62

Open BohdanKasiudyk opened 4 years ago

BohdanKasiudyk commented 4 years ago

1.Можна не лише стандартні чи вбудовані бібліотеки для даної мови, а й інші популярні бібліотеки

2.Якщо певні мови/бібліотеки підтримують кілька реалізацій – бажано описати, які з них є більш популярними, та навести посилання на рекомендації щодо вибору

1.Not only standart or built-in libraries for this language but also other popular libraries

2.If certain languages/labraries support several implementations - it is desirable to describe which of they are more popular, and cite reference to selection recommendations

Yuliiaa commented 4 years ago

Java:

Python:

robertdubson commented 4 years ago

List in C++ Standard Template Library (STL) Lists are sequence containers that allow non-contiguous memory allocation. As compared to vector, list has slow traversal, but once a position has been found, insertion and deletion are quick. Normally, when we say a List, we talk about doubly linked list. For implementing a singly linked list, we use forward list. https://www.geeksforgeeks.org/list-cpp-stl/

yazhezhuk commented 4 years ago

в С#: