Find largest number of not sorted array without using linear and binary

Kevin Mogi

As far as i know, the only possible way to find largest number and lowest number if they array is not sorted by using linear search.

is there any other option for this one? just want to know tho

Bathsheba

Since the value of a particular element in an unsorted collection tells you nothing about the value of adjacent elements, you need to inspect every value.

And doing that is O(N).

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Find a number in sorted multidimentional array with binary search

From Dev

Find largest and smallest number in array using pointers in C

From Dev

Find Two largest numbers in a list without using Array

From Dev

Find the largest number that is lesser than a given number in a sorted list

From Dev

Using Binary Search to find the sub array with the largest sum modulo x, my solution uses iterative search.

From Dev

Find the largest number and its index in the random array

From Dev

Find the largest number in an array of integers javascript

From Dev

find a missing number in a sorted continuous array

From Dev

Find a sorted subsequence of size 4 in an array in linear time

From Dev

Fastest way to find the third largest of five given numbers without using array or loops?

From Dev

Binary search for finding the lowest and largest element in a sorted array than a given value?

From Dev

How to use Binary Search to find duplicates in sorted array?

From Dev

Binary Search Like Algorithm to Find Change in Value in Sorted Array

From Dev

Function to find largest number

From Dev

Find textbox with the largest number

From Dev

Find second largest number

From Dev

Find number of consecutive ones in binary array

From Dev

How to find the 100th largest number from an array

From Dev

Find the order of numbers which will give the largest number in an array

From Dev

How to find the 100th largest number from an array

From Dev

Find the average. largest, smallest number and mode of a int array

From Dev

How to find occurrences of the largest integer in C without array?

From Dev

Linear search in a sorted array - Java

From Dev

Find the largest number from a string using a regular expression

From Dev

Check sorted non sequential array for duplicates using binary search?

From Dev

It is not printing with the 2nd largest number using Array in Javascript

From Dev

Binary Search a non-existing number in a sorted array, return a larger negative number than -1

From Dev

sorted array with Number shuffle

From Dev

Find the largest sum subarray from the given array using segment trees

Related Related

  1. 1

    Find a number in sorted multidimentional array with binary search

  2. 2

    Find largest and smallest number in array using pointers in C

  3. 3

    Find Two largest numbers in a list without using Array

  4. 4

    Find the largest number that is lesser than a given number in a sorted list

  5. 5

    Using Binary Search to find the sub array with the largest sum modulo x, my solution uses iterative search.

  6. 6

    Find the largest number and its index in the random array

  7. 7

    Find the largest number in an array of integers javascript

  8. 8

    find a missing number in a sorted continuous array

  9. 9

    Find a sorted subsequence of size 4 in an array in linear time

  10. 10

    Fastest way to find the third largest of five given numbers without using array or loops?

  11. 11

    Binary search for finding the lowest and largest element in a sorted array than a given value?

  12. 12

    How to use Binary Search to find duplicates in sorted array?

  13. 13

    Binary Search Like Algorithm to Find Change in Value in Sorted Array

  14. 14

    Function to find largest number

  15. 15

    Find textbox with the largest number

  16. 16

    Find second largest number

  17. 17

    Find number of consecutive ones in binary array

  18. 18

    How to find the 100th largest number from an array

  19. 19

    Find the order of numbers which will give the largest number in an array

  20. 20

    How to find the 100th largest number from an array

  21. 21

    Find the average. largest, smallest number and mode of a int array

  22. 22

    How to find occurrences of the largest integer in C without array?

  23. 23

    Linear search in a sorted array - Java

  24. 24

    Find the largest number from a string using a regular expression

  25. 25

    Check sorted non sequential array for duplicates using binary search?

  26. 26

    It is not printing with the 2nd largest number using Array in Javascript

  27. 27

    Binary Search a non-existing number in a sorted array, return a larger negative number than -1

  28. 28

    sorted array with Number shuffle

  29. 29

    Find the largest sum subarray from the given array using segment trees

HotTag

Archive