vishnudas-bluefox / HacktoberFest-2021

An 24x7 active repo for your contribution feel free to contribute:)
13 stars 58 forks source link

Frequency of Kth term in string #67

Closed chinmayaAgrawal closed 3 years ago

chinmayaAgrawal commented 3 years ago

Frequency of Kth term

A java aprogram, given an array of strings words and an integer k, return the k most frequent strings. Return the answer sorted by the frequency from highest to lowest. Sort the words with the same frequency by their lexicographical order.


Screenshot (736)

Data structures

 Heap, HashTables

Time Complexity

O(n log k)

Space Complexity


O(n)