aklepatc ([personal profile] aklepatc) wrote2024-05-08 01:34 pm

Strange Container

Code a data structure with 2 operations: push() and popMostFrequent().

Most of the meat is in the comments/discussion below.

[personal profile] sassa_nf 2024-05-08 05:51 pm (UTC)(link)
Most frequently accessed?..

Ah, OK, there are no other accesses, just pushes and pops that presumably remove items.
Edited 2024-05-08 17:53 (UTC)
juan_gandhi: (Default)

[personal profile] juan_gandhi 2024-05-08 07:49 pm (UTC)(link)

PriorityQueue, I guess.