Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an array, and need to find the index of the smallest item, using Java or C, without altering the content or ordering of the array.

For example, with the input:

a = [2, 2, 2, 3, 3, 4, 3]

0 should be returned.

I am unsure how to do this, can anybody help?

share|improve this question
Why is this tagged 'c' and 'java'? They are very different languages. – Ed S. Apr 10 '09 at 5:01
@Ed, the question says "in Java or C". @Young obviously doesn't care. And the languages won't be that different for this type of task. – paxdiablo Apr 10 '09 at 5:17
@Young - if you wanted some type of skipping (like @cyberjag claims), then please explain what you mean by that. – Matthew Schinckel Apr 10 '09 at 12:55

13 Answers

up vote 1 down vote accepted

Check whether the following Java code will satisfy your requirement.

private int min(int[] a, int... reject) {
    int res = Integer.MAX_VALUE;
    for (int i = 0; i < a.length; i++) {
        boolean skip = false;
        for (int r : reject) {
            if (i == r) {
                skip = true;
                break;
            }
        }
        if (!skip) {
            res = Math.min(a[i], res);
        }
    }
    return res;
}

Demo usage.

int[] a = { 2, 2, 2, 3, 3, 4, 3 };
System.out.println(min(a));
// this will print 2
System.out.println(min(a, 0, 1, 2));
// this will print 3

EDIT: You can modify the above function to return the index also.

EDIT2: To Young See Math.min javadoc http://java.sun.com/javase/6/docs/api/java/lang/Math.html#min(int,%20int)

EDIT3:

but can you explain this bit of logic.. as following things are new to me... 1) private int min(int[] a, int... reject) 2) for (int r : reject) { if (i == r) { skip = true; break; } }

1) The signature is making use of variable arguments. So you can pass all the index you want to reject as parameters. 2) The for loop is making sure that if the element with the index is to reject then simply skip it by making the skip flag to true. And we are breaking the loop there itself.

EDIT4: TO ALL - Young changed his question removing the requirement of skipping elements from the array. Now for the current question John Feminella's code snippet is the easiest way.

share|improve this answer
Your code is in Java... private int min(int[] a, int... reject) -- The way reject have been declared is it permissible... – AGeek Apr 10 '09 at 5:00
Thnx cyberjag.. u rock.. ur programm worked.. but can you explain this bit of logic.. as following things are new to me... 1) private int min(int[] a, int... reject) 2) for (int r : reject) { if (i == r) { skip = true; break; } } – AGeek Apr 10 '09 at 5:08
Please sir,, explain me the logic for it... what is Math.min?? – AGeek Apr 10 '09 at 5:22
1  
This seems overly complex to me for something that could have been a simple loop'n'check. – paxdiablo Apr 10 '09 at 6:09
1  
Where in the initial question was the reference to an arbitrary position? The "but if it is rejected (some logic, due to which it is rejected)" section? That was fairly obtuse. I've asked the OP to clarify. – Matthew Schinckel Apr 11 '09 at 12:01
show 3 more comments

It should return me the array position of the smallest number.

Simply iterate through the array, keeping track of whether a particular index has a smaller value than the smallest one encountered so far.

In pseudocode:

j = 0

for i = 1 ... arr.length:
  if arr[i] < arr[j]:
    j = i

return j // j now contains the index of the smallest value in the array.
share|improve this answer
I think better would be to set j to arr[0] as starting value. – claptrap Apr 10 '09 at 7:46
That won't work; you will probably get an ArrayIndexOutOfBoundsExcepton the first time you call arr[j] (i.e. arr[arr[0]]). – Simon Nickerson Apr 10 '09 at 7:59
@Anders: We're storing the smallest index, not the smallest value. – John Feminella Apr 10 '09 at 12:02
+1 - Nice and simple. – Andrew Hare Apr 10 '09 at 12:18
1  
It will give the wrong answer for an empty array. I think it should throw an exception in that case because there is no right answer for an empty array. – Dangph Apr 10 '09 at 13:11
show 1 more comment
int[] a = {45,56,23,56,89,64,21,86};    
int small = a[0];
    int smallest = a[0];
    for(int i:a){
        if(i<smallest)
            smallest=i;
    }
    for(int i:a){
        if(i<small&&i!=smallest)
            small=i;
    }
    System.out.println(small);
share|improve this answer
This can be done with a singel loop, despite the upvotes by the badge hunters... – silent_warrior Nov 9 '12 at 9:10

in C

int getMinIndex(int *a, int len)
{
    int i = 0, ret = 0;
    int min = INT_MAX; // defined in <limits.h>

    if (!a || len <= 0)
        return -1;

    for (; i < len; ++ i)
    {
        if (a[i] < min)
        {
            ret = i;
            min = a[i];
        }
    }

    return ret;
}
share|improve this answer
Basically the same in java, except you need to change int* to int[] and the like. – Peter Lawrey Jul 19 '09 at 9:26
I'd set min to a[0] (after validating len) and loop from 1 to the end of the array instead of setting to INT_MIN and loop from 0 to the end. – pmg Oct 28 '09 at 10:01

Erm. In pseudocode:

int low_index = -1;
int low_value;
for(int ix = 0 to length(array)) {
    if(low_index == -1 || array[low_index] < low_value) {
        low_index = ix;
        low_value = array[ix];
    }
}
return low_index;
share|improve this answer
You can streamline this a bit -- just set low_index to be the first item in the array (assuming there's something there). See my answer for the specifics. Otherwise, a perfectly good solution. – John Feminella Apr 10 '09 at 4:18
Please can u provide ur example with main function and pass complete parameters... as the variables u have chosen, i cannot determine what to pass.. so please... if u cn give some more details abt this programm – AGeek Apr 10 '09 at 4:59
Man, I wish I had a pseudo-code compiler :-) – paxdiablo Apr 10 '09 at 5:11
Plzsendtehpseudocodez? :) – bk1e Apr 10 '09 at 6:03

John Feminella is on the right track by iterating once through the array. I think sorting has a few problems: Young says the array can't be changed, and as Pax points out no sort is going to have better performance than iterating over the array once.

If you're interested in why one method is faster than another you might read about Big O Notation. In computer science this is used to describe the growth rate of functions and estimate their running time. Lower-order functions will generally be faster than higher order ones, and this is usually written in terms of the number of elements or n.

For example the iteration that John F. proposed is described as linear and is written as O(n). We only go through the array once and it has n elements. Sorting always requires more operations. Over the years a lot of smart people have come up with sorting algorithms that improve performance, but they all have higher growth rates and are higher order than O(n). For instance Java's Array sort() is O(n*log(n)), and the Wikipedia page for Sorting Algorithms has a table with many more examples.

You may not need it for this project, but I hope it's helpful in the future when you do need to do expensive operations like sorting.

share|improve this answer
  int main(void) {
  int array[8] = { 60, 25, 734, 6, 40, 2, 0 ,99 };
  int arrayMin[4];
  int arrayMax[4];
  int minValue, maxValue;
  int numOfComparisons = 0;

  /* Partition the mins and maxs */
  int i;
  int s = 0;

  for (i = 1; i < 8; i += 2) {
    numOfComparisons++;
    if (array[i] > array[i-1]) {
      arrayMin[s] = array[i-1];
      arrayMax[s] = array[i];
    }
    else {
      arrayMin[s] = array[i];
      arrayMax[s] = array[i-1];
    }
    s++;
  }
  /* Find min */
  minValue = arrayMin[0];
  for (i = 1; i < 4 ; i++) {
    numOfComparisons++;
    if (arrayMin[i] < minValue) {
     minValue = arrayMin[i];
   }
  }
  printf("Min Value: %d\n", minValue);

  /* Find max */
  maxValue = arrayMax[0];
  for ( i = 1; i < 4; i++) {
    numOfComparisons++;
    if (arrayMax[i] > maxValue) {
      maxValue = arrayMax[i];
    }
  }
  printf("Max Value: %d\n", maxValue);
  printf("Num Of Comparisons: %d\n", numOfComparisons);

   }
share|improve this answer

give this a shot. it should get you the index value of the smallest value.

int[] a = new int[7];
a[0] = 2; a [1] = 2; a[2] = 2; a[3] = 3; a[4] = 3; a[5] = 4; a[6] = 3;

int min = a[0];

for (int i = 0; i < a.length-1; i++) {
    if (a[i] > a[i+1] && min >= a[i]) {

        min = a[i+1];

    }//end IF

}//end FOR
int minIndx = 0;
for (int i = 0; i < a.length; i++) {
    if(a[i] == min){
        minIndx = i;
        break;
    }//end IF
}//end FOR


// IO.print() is a custom built method. Duplicates System.out.println();
IO.println("the index of the smallest value is " + minIndx);
share|improve this answer

Now i want to find out the smallest no. from the given list of nos. The question is some what tricky in which, we can see a[0] consists of smallest no. but if it is rejected (some logic, due to which it is rejected) then it should call a[1] being the second smallest and third smallest and so on and so forth.. It should return me the array position of the smallest no.

You probably need to keep an additional indices array to index into the original array for the smallest element. And I assume that you want only the smallest and no-fallback on the second smallest or so on?

share|improve this answer

Java:

If you don't worry about performance, which is not an issue for small data sets, you should make use of the collections framework in java.

// Find the smallest number
Integer smallest = new TreeSet<Integer>( Arrays.asList( a ) ).get( 0 );

// Get array index of smallest number
Arrays.asList( a ).indexOf( smallest );
share|improve this answer

this can be done in O(n log n) time without reordering the array. Basically, you compare pairs to find the lowest, then compare those pairs to find he lowest out of four, and so on. Easiest way to do it is with recursion.

Start the process get_index_of_lowest(arr, 0, arr.length)

int get_index_of_lowest(int[] arr, int start, int blocksize) {
  if(blocksize == 1) {
     return start;
  }
  else {
    int left = get_index_of_lowest(arr, start, arr.length/2);
    // note that arr.length is potentially odd
    int right = get_index_of_lowest(arr, 
        start + arr.length/2, 
        arr.length - arr.length/2);
    return arr[left] <= arr[right] ? left:right;
  }
}

Without recursion, you need a int[] to use as a stack.

As always with homework questions - please let me know which institution you are at, so I know not to work with anyone from there in future.

share|improve this answer
Actually - this is a a waste of time. You still need to do n-1 comparisons. O(n log n) is worse than O(n). Doh. – paulmurray Apr 10 '09 at 13:52

Answer in c:

#include<stdio.h>
#include<conio.h>
void main()
{
    int a = [2, 2, 2, 3, 3, 4, 3],i;
    clrscr();
    for (i=0;i<=6;i++)
    {
        for (a[0]>a[i])//if you change > sign into < sign, it will produce first largest no.
        {
            int s;
            s=a[i];
            a[i]=a[0];
            a[0]=a[i];
        }
    }
    printf("Smallest no=%d",a[0]);
    for (i=1;i<=6;i++)
    {
        if (a[1]>a[i])   // if you change >sign to < sign ,it will produce second largest no .
        {
            int t;
            t=a[i];
            a[i]=a[1];
            a[1]=t;
        }
    }
    printf("Second smallest no=%d",a[1]);
    getch();
}
share|improve this answer

I think there is a faster way:

void quickSort(int numbers[], int array_size)
{
  q_sort(numbers, 0, array_size - 1);
}


void q_sort(int numbers[], int left, int right)
{
  int pivot, l_hold, r_hold;

  l_hold = left;
  r_hold = right;
  pivot = numbers[left];
  while (left < right)
  {
    while ((numbers[right] >= pivot) && (left < right))
      right--;
    if (left != right)
    {
      numbers[left] = numbers[right];
      left++;
    }
    while ((numbers[left] <= pivot) && (left < right))
      left++;
    if (left != right)
    {
      numbers[right] = numbers[left];
      right--;
    }
  }
  numbers[left] = pivot;
  pivot = left;
  left = l_hold;
  right = r_hold;
  if (left < pivot)
    q_sort(numbers, left, pivot-1);
  if (right > pivot)
    q_sort(numbers, pivot+1, right);
}
share|improve this answer
I can't tell whether this answer is supposed to be taking the mickey or not :-) In case it isn't, there is no sort that will be as fast as just scanning the array checking against the current minimum (and on top of that, the question says the array's not allowed to change). – paxdiablo Apr 10 '09 at 5:14
1  
Faster? Are you kidding? – dmeister Apr 10 '09 at 11:11
Oh sorry, this a sort. I guess I thought he wanted to sort the numbers not just find the smallest one. – ioSamurai Apr 10 '09 at 17:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.