码迷,mamicode.com
首页 > 其他好文 > 详细

CC150 - 11.3

时间:2014-08-21 02:46:43      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   java   io   ar   div   amp   

Question:

Given a sorted array of n integers that has been rotated an unknown number of times, write code to find an element in the array. You may assume that the array was originally sorted in increasing order.

 1 package POJ;
 2 
 3 import java.util.Arrays;
 4 import java.util.Comparator;
 5 import java.util.Hashtable;
 6 import java.util.LinkedList;
 7 import java.util.List;
 8 
 9 public class Main {
10 
11     /**
12      * 
13      * 11.3 Given a sorted array of n integers that has been rotated an unknown number of times, write code to find an
14      * element in the array. You may assume that the array was originally sorted in increasing order.
15      * 
16      */
17     public static void main(String[] args) {
18         Main so = new Main();
19         int[] list = { 10, 15, 20, 0, 5 };
20         System.out.println(so.search(list, 0, 4, 5));
21     }
22 
23     public int search(int[] list, int left, int right, int x) {
24         int mid = (right + left) / 2;
25         if (x == list[mid])
26             return mid;
27         if (left > right)
28             return -1;
29         if (list[left] < list[mid]) {
30             // left is normally ordered
31             if (x >= list[left] && x <= list[mid]) {
32                 return search(list, left, mid - 1, x);
33             } else {
34                 return search(list, mid + 1, right, x);
35             }
36         } else if (list[left] > list[mid]) {
37             // right is normally ordered
38             if (x >= list[mid] && x <= list[right]) {
39                 return search(list, mid + 1, right, x);
40             } else {
41                 return search(list, left, mid - 1, x);
42             }
43         } else {
44             // list[left]==list[mid]
45             // left half is all repeats
46             if (list[mid] != list[right]) {
47                 return search(list, mid + 1, right, x);
48             } else {
49                 // search both halves
50                 int result = search(list, left, mid - 1, x);
51                 if (result == -1)
52                     return search(list, mid + 1, right, x);
53                 else
54                     return result;
55             }
56         }
57     }
58 }

 

CC150 - 11.3,布布扣,bubuko.com

CC150 - 11.3

标签:style   blog   color   java   io   ar   div   amp   

原文地址:http://www.cnblogs.com/Phoebe815/p/3926073.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!