The programming team knows they need to create a program that will use a linear data structure to complete large amounts of data manipulation very quickly which data structure is most appropriate
Linked list
Maps
Array list
Graphs
1 answer
The most appropriate data structure for completing large amounts of data manipulation very quickly would be an Array list. Unlike a linked list, an array list provides constant time access to elements, which allows for faster manipulation of data. Maps and graphs are not linear data structures and are typically used for different purposes, such as key-value pairing or representing connections between entities.