Skip to main content

Assignment 4 Solution

Question 1 Given an unsorted list of n elements, find the first element, which is repeated

public class Q1 {
public static void main(String[] args) {
int[] arr = { 34, 56, 77, 1, 5, 6, 6, 6, 7, 8, 10, 34, 20, 30 };
System.out.print("First element which is repeated is : "+FirstRepeated(arr));
}

static int FirstRepeated(int[] arr) {
for (int i = 0; i < arr.length; i++) {
for (int j = i + 1; j < arr.length; j++) {
if (arr[i] == arr[j]) {
return arr[i];
}
}
}
return 0;
}
}

Credit:

Question 2 Given an array of n numbers, print the duplicate elements in the array

import java.util.Arrays;

public class FindRepeatingNumbers {
public static void main(String[] args) {
int[] numbers = { 34, 56, 77, 1, 5, 6, 6, 6, 7, 8, 10, 34, 20, 30 };
printRepeatingNumbers(numbers);
}

public static void printRepeatingNumbers(int[] numbers) {
Arrays.sort(numbers);

System.out.print("Repeating elements are : ");

for (int i = 1; i < numbers.length; i++) {
if (numbers[i] == numbers[i - 1]) {
System.out.print(numbers[i] + " ");
}
}
}
}

Credit:

Question 4 Write a program to remove duplicate from an integer list

import java.util.Arrays;

public class RemoveDuplicateElements {

public static void main(String[] args) {
int[] originalArray = { 34, 56, 77, 1, 5, 6, 6, 6, 7, 8, 10, 34, 20, 30 };

System.out.print("The array is: ");
print(originalArray);

System.out.print("After removal of duplicates: ");
int[] withoutDuplicates = removeDuplicates(originalArray);
print(withoutDuplicates);
}

public static int[] removeDuplicates(int[] arr) {
int j = 0;
Arrays.sort(arr);

for (int i = 1; i < arr.length; i++) {
if (arr[i] != arr[j]) {
j++;
arr[j] = arr[i];
}
}

int[] resultArray = Arrays.copyOf(arr, j + 1);
return resultArray;
}

static void print(int[] arr) {
for (int i = 0; i < arr.length; i++) {
System.out.print(arr[i] + " ");
}
System.out.println();
}
}

Credit:

Question 5 In given list of n - 1 elements, which are in the range of 1 to n. There are no duplicates in the array. One of the integer is missing. Find the missing element

public class Q5 {
public static void main(String[] args) {
int[] arr = { 1, 2, 3, 4, 6, 7, 8, 9, 10 };
System.out.print("The missing number in the array is : "+findMiss(arr));
}

static int findMiss(int[] arr) {
for (int i = arr[0] - 1; i < arr.length; i++) {
if (arr[i] != i + 1) {
return i + 1;
}
}
return Integer.MIN_VALUE;
}
}

Credit:

Question 6 Given an array, find the maximum and minimum value in the array and also find the values in range minimum and maximum that are absent in the array

import java.util.Arrays;

public class FindMinMaxMissing {

public static void main(String[] args) {
int[] arr = { 10, 7, 5, 9, 4, 20, 15, 13 };

System.out.println("The maximum and minimum element in the array is...");
findMinMax(arr);
}

static void findMinMax(int[] arr) {
int min = Integer.MAX_VALUE;
int max = Integer.MIN_VALUE;

for (int i = 0; i < arr.length; i++) {
if (arr[i] > max) {
max = arr[i];
}
if (arr[i] < min) {
min = arr[i];
}
}

System.out.println("Maximum value : " + max);
System.out.println("Minimum value : " + min);

System.out.println("The missing elements between min and max : ");
findMissingElements(arr);
}

static void findMissingElements(int[] arr) {
Arrays.sort(arr);
int current = arr[0];
int i = 0;

while (i < arr.length) {
if (current == arr[i]) {
current++;
i++;
} else {
System.out.print(current + " ");
current++;
}
}
}
}

Credit:

Question 7 Given an array in which all the elements appear even number of times except one, which appear odd number of times. Find the element which appear odd number of times

import java.util.HashMap;

public class FindOddCount {

public static void main(String[] args) {
int[] arr = { 2, 3, 5, 4, 5, 2, 4, 3, 5, 2, 4, 4, 2 };
findOddCount(arr);
}

static void findOddCount(int[] arr) {
HashMap<Integer, Integer> countMap = new HashMap<>();

for (int i = 0; i < arr.length; i++) {
if (countMap.containsKey(arr[i]))
countMap.put(arr[i], countMap.get(arr[i]) + 1);
else
countMap.put(arr[i], 1);
}

System.out.print("The number appearing odd number of times is : ");
for (int i = 0; i < arr.length; i++) {
if (countMap.containsKey(arr[i]) && (countMap.get(arr[i]) % 2 == 1)) {
System.out.println(arr[i]);
break;
}
}
}
}

Credit:

Question 8 Given an array in which all the elements appear even number of times except two, which appear odd number of times. Find the elements which appear odd number of times in O(n) time complexity and O(1) space complexity

public class FindOddOccurrence {

public static void main(String[] args) {

int[] numbers = {2, 3, 5, 4, 5, 2, 4, 3, 5, 2, 4, 4, 2};
int arrayLength = numbers.length;

System.out.println("The number appearing an odd number of times is: " + findOddOccurrence(numbers, arrayLength));
}

static int findOddOccurrence(int[] numbers, int arrayLength) {

int result = 0;

for (int i = 0; i < arrayLength; i++) {
result ^= numbers[i];
}

return result;
}
}

Credit:

Question 9 Given an array of size N, the elements in the array may be repeated. You need to find sum of distinct elements of the array. If there is some value repeated continuously then they should be added once

import java.util.Arrays;

public class SumOfDistinctElements {

public static void main(String[] args) {
int[] numbers = {1, 2, 2, 3, 3, 3, 4, 4, 5};
int sum = 0;
boolean isContinuous = false;

Arrays.sort(numbers);

for (int i = 0; i < numbers.length; i++) {
if (i < numbers.length - 1 && numbers[i] == numbers[i + 1]) {
isContinuous = true;
} else {
if (!isContinuous) {
sum += numbers[i];
}
isContinuous = false;
}
}

System.out.println("Sum of distinct elements: " + sum);
}
}

Credit:

Question 10 In given List of integers, both +ve and -ve. You need to find the two elements such that their sum is closest to zero

import java.util.*;

public class ClosestToZeroSum {

public static void main(String[] args) {
List<Integer> numbers = Arrays.asList(-10, -5, 2, 4, 7, 8);
int minSum = Integer.MAX_VALUE;
int num1 = 0;
int num2 = 0;

Collections.sort(numbers);

int left = 0;
int right = numbers.size() - 1;

while (left < right) {
int sum = numbers.get(left) + numbers.get(right);

if (Math.abs(sum) < Math.abs(minSum)) {
minSum = sum;
num1 = numbers.get(left);
num2 = numbers.get(right);
}

if (sum < 0) {
left++;
} else {
right--;
}
}

System.out.println("Two elements with sum closest to zero: " + num1 + " and " + num2);
}
}

Credit:

Question 11 Given an array of n numbers, find two elements such that their sum is equal to “value”

import java.util.*;

public class TwoSum {

public static void main(String[] args) {
int[] arr = { 2, 7, 11, 15, 8, 3 };
int target = 10;

HashMap<Integer, Integer> map = new HashMap<>();

for (int i = 0; i < arr.length; i++) {
int complement = target - arr[i];

if (map.containsKey(complement)) {
int complementIndex = map.get(complement);
System.out.println("Two elements with sum " + target + " are " + arr[complementIndex] + " and " + arr[i]);
return;
}

map.put(arr[i], i);
}

System.out.println("No two elements found with sum " + target);
}
}

Credit:

Question 12 Given two lists X and Y, find a pair of elements (xi, yi) such that xi ∈ X and yi ∈ Y, where xi + yi = value

import java.util.*;

public class Q12 {
public static void main(String[] args) {
List<Integer> list1 = Arrays.asList(1, 2, 3, 4, 5);
List<Integer> list2 = Arrays.asList(6, 7, 8, 9, 10);
int targetSum = 11;
Set<Integer> set2 = new HashSet<>();

for (int num : list2) {
set2.add(num);
}

for (int num : list1) {
int complement = targetSum - num;
if (set2.contains(complement)) {
System.out.println("Pair with sum " + targetSum + ": (" + num + ", " + complement + ")");
break;
}
}
}
}

Credit:

Question 13 Given an array of integers, find the element pair with minimum difference

import java.util.*;

public class Q13 {
public static void main(String[] args) {
int[] arr = { 5, 1, 3, 9, 7 };
Arrays.sort(arr);
int minDiff = Integer.MAX_VALUE;
int elem1 = 0;
int elem2 = 0;
for (int i = 0; i < arr.length - 1; i++) {
int diff = arr[i + 1] - arr[i];
if (diff < minDiff) {
minDiff = diff;
elem1 = arr[i];
elem2 = arr[i + 1];
}
}
System.out.println("Pair with minimum difference: (" + elem1 + ", " + elem2 + ")");
}
}

Credit:

Question 14 Given two array, find minimum difference pair such that it should take one element from each array

import java.util.*;

public class FindMinimumDifferencePair {

public static void main(String[] args) {
int[] arr1 = { 5, 1, 3, 9, 7 };
int[] arr2 = { 8, 2, 6, 10, 4 };
Arrays.sort(arr1);
Arrays.sort(arr2);
int minDiff = Integer.MAX_VALUE;
int elem1 = 0;
int elem2 = 0;
int i = 0;
int j = 0;
while (i < arr1.length && j < arr2.length) {
int diff = Math.abs(arr1[i] - arr2[j]);
if (diff < minDiff) {
minDiff = diff;
elem1 = arr1[i];
elem2 = arr2[j];
}
if (arr1[i] < arr2[j]) {
i++;
} else {
j++;
}
}
System.out.println("Pair with minimum difference: " + elem1 + ", " + elem2);
}
}

Credit:

Question 15 Given an array of integers, you need to find a triplet whose sum 0

import java.util.*;

public class Q15 {
public static void main(String[] args) {
int[] arr = { 5, -3, 2, -8, 1, 6, -1, 3 };

Arrays.sort(arr);

List<List<Integer>> triplets = new ArrayList<>();

for (int i = 0; i < arr.length - 2; i++) {
if (i == 0 || (i > 0 && arr[i] != arr[i - 1])) {
int l = i + 1;
int h = arr.length - 1;
int sum = 0 - arr[i];

while (l < h) {
if (arr[l] + arr[h] == sum) {
triplets.add(Arrays.asList(arr[i], arr[l], arr[h]));

while (l < h && arr[l] == arr[l + 1]) {
l++;
}
while (l < h && arr[h] == arr[h - 1]) {
h--;
}

l++;
h--;
} else if (arr[l] + arr[h] < sum) {
l++;
} else {
h--;
}
}
}
}

System.out.println("Triplets whose sum is 0:");
for (List<Integer> triplet : triplets) {
System.out.println(triplet);
}
}
}

Credit:

Question 16 Given an array of integers, you need to find a triplet whose sum equal to given value

import java.util.*;

public class Q16 {
public static void main(String[] args) {
int[] arr = { 1, 5, 8, 9, 12, 15 };
int targetSum = 22;
List<List<Integer>> triplets = new ArrayList<>();

for (int i = 0; i < arr.length - 2; i++) {
int left = i + 1;
int right = arr.length - 1;
int complement = targetSum - arr[i];

while (left < right) {
if (arr[left] + arr[right] == complement) {
triplets.add(Arrays.asList(arr[i], arr[left], arr[right]));
left++;
right--;
} else if (arr[left] + arr[right] < complement) {
left++;
} else {
right--;
}
}
}

System.out.println("Triplets whose sum is " + targetSum + ":");
for (List<Integer> triplet : triplets) {
System.out.println(triplet);
}
}
}

Credit:

Question 17 Given an array of positive integers representing edges of triangles. Find the number of triangles that can be formed from these elements representing sides of triangles. For a triangle sum of two edges is always greater than third edge

import java.util.*;

public class Q17 {

public static void main(String[] args) {
int[] arr = { 4, 6, 3, 7, 1, 9, 8, 2, 5 };
Arrays.sort(arr);
int triangleCount = 0;
for (int i = 0; i < arr.length - 2; i++) {
int k = i + 2;
for (int j = i + 1; j < arr.length - 1 && arr[i] != 0; j++) {
while (k < arr.length && arr[i] + arr[j] > arr[k]) {
k++;
}
triangleCount += k - j - 1;
}
}
System.out.println("Number of triangles that can be formed: " + triangleCount);
}
}

Credit:

Question 18 Suppose you are given an unsorted list of n distinct elements. How will you identify the second largest element with minimum number of comparisons

public class Q18 {
public static void main(String[] args) {
int[] arr = { 4, 8, 1, 6, 2, 7, 5, 3 };
int n = arr.length;

int cmpCount = 0;

int largest = Integer.MIN_VALUE;
int secondLargest = Integer.MIN_VALUE;

for (int i = 0; i < n; i++) {
cmpCount++;

if (arr[i] > largest) {
secondLargest = largest;
largest = arr[i];
} else if (arr[i] > secondLargest && arr[i] != largest) {
secondLargest = arr[i];
}
}

System.out.println("Second largest element: " + secondLargest);
System.out.println("Number of comparisons: " + cmpCount);
}
}

Credit:

Question 19 In an unsorted list of numbers of size n, if all the elements of the array are sorted then find the element, which lie at the index n/2

public class Q19 {
public static void main(String[] args) {
int[] arr = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
int n = arr.length;

int middleIndex = n / 2;

int middleElement = arr[middleIndex];

System.out.println("Middle element: " + middleElement);
}
}

Credit:

Question 20 A bitonic list comprises of an increasing sequence of integers immediately followed by a decreasing sequence of integers. Find an element in a bitonic list

public class BitonicSearch {
public static void main(String[] args) {
int[] arr = { 1, 3, 6, 9, 12, 15, 14, 11, 8, 5, 2 };
int n = arr.length;
int key = 8;
int index = bitonicSearch(arr, n, key);
if (index == -1) {
System.out.println("Element not found");
} else {
System.out.println("Element found at index: " + index);
}
}

static int bitonicSearch(int[] arr, int n, int key) {
int peakIndex = findPeak(arr, n);
int index = binarySearch(arr, 0, peakIndex, key);
if (index != -1) {
return index;
}
return binarySearch(arr, peakIndex + 1, n - 1, key);
}

static int findPeak(int[] arr, int n) {
int low = 0, high = n - 1;
while (low < high) {
int mid = (low + high) / 2;
if (arr[mid] > arr[mid + 1]) {
high = mid;
} else {
low = mid + 1;
}
}
return low;
}

static int binarySearch(int[] arr, int low, int high, int key) {
while (low <= high) {
int mid = (low + high) / 2;
if (arr[mid] == key) {
return mid;
} else if (arr[mid] > key) {
high = mid - 1;
} else {
low = mid + 1;
}
}
return -1;
}
}

Credit: