H-Index is a metric to measure a researcher's productivity and citation impact, calculated from citation counts. It finds the largest value H, where H papers have at least H citations each. Learn two approaches: Sorting for O(n*logn) time and Counting Sort for O(n) time. Examples and Java programs illustrate the concept.
For more details, visit the GeeksforGeeks article: H-Index.