139k views
1 vote
Below is some info for some internet transactions. We want to sort it by time and by location. Which sorting algorithm is appropriate for this particular problem?

a. radix sort.
b. heap sort.
c. selection sort.
d. shell sort.

User Rumeal
by
6.0k points

1 Answer

2 votes

Answer:

c. selection sort

Step-by-step explanation:

The best way to sort the internet transactions data based on time and location is selection sort. The algorithms sorting technique is used to sort the complex data in computer programs. Shell sort is the technique which sorts the data apart from each other and reduces interval between them. Heap sort is sorting technique based on binary heap data structure. Radix sort is an integer sorting technique in algorithms.

User Carles Sala
by
5.3k points