Computer Science, asked by Zafar640, 11 months ago

5. What data structure is used for dictionary. What are limitations of that data structure.

Answers

Answered by yashgandhi74
0

Python's dictionaries are implemented as resizable hash tables. ... It also means that no sorted order of the keys is maintained, and traversing the internal array as the dict.keys and dict.items methods do will output the dictionary's content in some arbitrary jumbled order.

A data structure is a specialized format for organizing and storing data. General data structure types include the array, the file, the record, the table, the tree, and so on. ... In computer programming, a data structure may be selected or designed to store data for the purpose of working on it with various algorithms.

Answered by Anonymous
0

A data structure is a specialized format for organizing and storing data. General data structure types include the array, the file, the record, the table, the tree, and so on. ... In computer programming, a data structure may be selected or designed to store data for the purpose of working on it with various algorithms

Similar questions