zoukankan      html  css  js  c++  java
  • CC150

    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 }
  • 相关阅读:
    Prototype源码浅析——String部分(四)之补充
    改造alert的引发的争论【基本类型与引用类型】
    Eclipse rcp 窗口激活
    Eclipse statusLine 加入进度信息
    线的匹配
    python 文本搜索
    Eclipse rcp 编辑器行号显示
    CDT重建索引
    Eclipse rcp 数据存储
    CTabFolder 最大最小化
  • 原文地址:https://www.cnblogs.com/Phoebe815/p/3926073.html
Copyright © 2011-2022 走看看