How to find kth smallest element in unsorted array in o(logn)
Answers
Answered by
5
Unsorted Array | Set 1 - GeeksforGeeks
We can find k'th smallest element in time complexity better than O(N Log N). A simple optomization is to create a Min Heap of ...
C program to find minimum element in array
#include <stdio.h>
int main()
{
int array[100], minimum, size,
Answered by
3
Explanation:
smallest element in unsorted array
Similar questions