Find the Median
Problem Statement :
The median of a list of numbers is essentially its middle element after sorting. The same number of elements occur after it as before. Given a list of numbers with an odd number of elements, find the median? Function Description Complete the findMedian function in the editor below. findMedian has the following parameter(s): int arr[n]: an unsorted array of integers Returns int: the median of the array Input Format The first line contains the integer n, the size of arr. The second line contains n space-separated integers arr[i]
Solution :
Solution in C :
In C++ :
#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
int main() {
int n, *arr;
cin>>n;
arr = new int[n];
for (int i = 0 ; i < n ; i++) cin>>arr[i];
sort(arr,arr+n);
if (n%2 == 1) cout<<arr[(n-1)/2]<<endl;
else cout<<(arr[n/2 - 1]+arr[n/2])/2<<endl;
return 0;
}
In Java :
import java.io.*;
import java.util.*;
import java.text.*;
import java.math.*;
import java.util.regex.*;
public class Solution {
public static int quickSort(int[] a, int p, int r,int index)
{
if(p==r)
return a[p];
if(p<r)
{
int q=partition(a,p,r);
if(q==index)
return a[q];
else if(q>index)
return quickSort(a,p,q-1,index);
else
return quickSort(a,q+1,r,index);
}
return 0;
}
private static int partition(int[] a, int p, int r) {
int x = a[r];
int i = p-1 ;
int j = p ;
for(;j<r;++j)
{
if(a[j]<=x)
{
++i;
int temp = a[i];
a[i]=a[j];
a[j]=temp;
}
}
a[r]=a[i+1];
a[i+1]=x;
return i+1;
}
public static void main(String[] args)
{
Scanner sc = new Scanner(System.in);
int N = sc.nextInt();
int[] arr = new int[N];
for(int i=0;i<N;++i)
arr[i]=sc.nextInt();
System.out.println(quickSort(arr, 0, N-1,N/2));
}
}
In C :
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <stdlib.h>
#include <assert.h>
int compare (const void * a, const void * b)
{
return ( *(int*)a - *(int*)b );
}
/* Tail starts here */
int main()
{
int _ar_size;
scanf("%d", &_ar_size);
int _ar[_ar_size], _ar_i;
for(_ar_i = 0; _ar_i < _ar_size; _ar_i++)
{
scanf("%d", &_ar[_ar_i]);
}
qsort (_ar, _ar_size, sizeof(int), compare);
printf("%d",_ar[_ar_size/2]);
return 0;
}
In Python3 :
import math
def main():
testcase = int(input())
med = [int(i) for i in input().split()]
print(findmed(med))
def findmed(med):
med.sort()
if(len(med)%2 == 1):
return med[int(len(med)/2)]
else:
return (med[math.floor(len(med)/2)+math.ceil(len(med)/2)])/2
main()
View More Similar Problems
Fibonacci Numbers Tree
Shashank loves trees and math. He has a rooted tree, T , consisting of N nodes uniquely labeled with integers in the inclusive range [1 , N ]. The node labeled as 1 is the root node of tree , and each node in is associated with some positive integer value (all values are initially ). Let's define Fk as the Kth Fibonacci number. Shashank wants to perform 22 types of operations over his tree, T
View Solution →Pair Sums
Given an array, we define its value to be the value obtained by following these instructions: Write down all pairs of numbers from this array. Compute the product of each pair. Find the sum of all the products. For example, for a given array, for a given array [7,2 ,-1 ,2 ] Note that ( 7 , 2 ) is listed twice, one for each occurrence of 2. Given an array of integers, find the largest v
View Solution →Lazy White Falcon
White Falcon just solved the data structure problem below using heavy-light decomposition. Can you help her find a new solution that doesn't require implementing any fancy techniques? There are 2 types of query operations that can be performed on a tree: 1 u x: Assign x as the value of node u. 2 u v: Print the sum of the node values in the unique path from node u to node v. Given a tree wi
View Solution →Ticket to Ride
Simon received the board game Ticket to Ride as a birthday present. After playing it with his friends, he decides to come up with a strategy for the game. There are n cities on the map and n - 1 road plans. Each road plan consists of the following: Two cities which can be directly connected by a road. The length of the proposed road. The entire road plan is designed in such a way that if o
View Solution →Heavy Light White Falcon
Our lazy white falcon finally decided to learn heavy-light decomposition. Her teacher gave an assignment for her to practice this new technique. Please help her by solving this problem. You are given a tree with N nodes and each node's value is initially 0. The problem asks you to operate the following two types of queries: "1 u x" assign x to the value of the node . "2 u v" print the maxim
View Solution →Number Game on a Tree
Andy and Lily love playing games with numbers and trees. Today they have a tree consisting of n nodes and n -1 edges. Each edge i has an integer weight, wi. Before the game starts, Andy chooses an unordered pair of distinct nodes, ( u , v ), and uses all the edge weights present on the unique path from node u to node v to construct a list of numbers. For example, in the diagram below, Andy
View Solution →