二分查找2

 1 package com.wh.ObjectHomeWork;
 2
 3 import java.util.Arrays;
 4 import java.util.Scanner;
 5
 6 public class CharArray {
 7     private char[] words;
 8
 9     public CharArray(char[] words) { // 构造方法
10         this.words = words;
11     }
12
13     public void sort() { // 对数组进行冒泡排序
14         for (int i = 0; i < words.length - 1; i++) {
15             for (int j = 0; j < words.length - 1 - i; j++) {
16                 if (words[j] > words[j + 1]) {
17                     char t = words[j];
18                     words[j] = words[j + 1];
19                     words[j + 1] = t;
20                 }
21             }
22         }
23     }
24
25     public int query(char key) {
26         int index = 0;
27         for (int i = 0; i < words.length; i++) {
28             if (words[i] == key) {
29                 index = i;
30                 break;
31             }
32             if ((i == words.length - 1) && (words[i] != key)) {
33                 index = -1;
34             }
35         }
36         return index;
37     }
38
39     public int search(char key) {
40         int start = 0, ends = words.length - 1;
41         int middle;
42         int index = 0;
43         for (;;) {
44             middle = (ends + start) / 2 + (ends + start) % 2;
45             if (words[middle] == key) {
46                 index = middle;
47                 break;
48             } else if (key < words[middle] && key >= words[start]) {
49                 ends = middle;
50             } else if (key > words[middle] && key <= words[ends]) {
51                 start = middle;
52             } else {
53                 index = -1;
54                 break;
55             }
56         }
57         return index;
58     }
59
60     public static void main(String[] args) {
61         Scanner sc = new Scanner(System.in);
62         System.out.println("请随机输入一个数字:");
63         int str;
64         char num;
65         for (;;) {
66             str = sc.nextInt();
67             if (str > 0 && str < 65535) {
68                 num = (char) str;
69                 break;
70             } else {
71                 System.out.println("请重新输入一个数字:");
72             }
73         }
74         System.out.println("要查找的字符是:" + num);
75         char[] arr = "qwertyuiopasdfghjklzxcvbnm".toCharArray();
76         CharArray c1 = new CharArray(arr);
77         int index2 = c1.query(num);
78         System.out.println("排序前的索引是:" + index2);
79         System.out.println("排序前:" + Arrays.toString(arr));
80
81         c1.sort();
82         System.out.println("排序后:" + Arrays.toString(arr));
83         int index = c1.search(num);
84         System.out.println("排序后的索引是" + index);
85         sc.close();
86     }
87 }
时间: 2024-09-29 23:33:16

二分查找2的相关文章

二分查找

递归版(在区间[x, y)中找v的位置) 1 //递归版二分查找 2 int bsearch(int * A, int x, int y, int v) 3 { 4 5 if(v<a[x] || v>a[y-1]) return -1; 6 int m = x + (y-x)/2; //此处能不能用int m = (x+y)/2,需要仔细考虑(暂时想不到原因) 7 if(A[m]==v) return m; 8 else if(A[m]>v) return bsearch(A, x, m

二分查找总结

最近刷leetcode和lintcode,做到二分查找的部分,发现其实这种类型的题目很有规律,题目大致的分为以下几类: 1.最基础的二分查找题目,在一个有序的数组当中查找某个数,如果找到,则返回这个数在数组中的下标,如果没有找到就返回-1或者是它将会被按顺序插入的位置.这种题目继续进阶一下就是在有序数组中查找元素的上下限.继续做可以求两个区间的交集. 2.旋转数组问题,就是将一个有序数组进行旋转,然后在数组中查找某个值,其中分为数组中有重复元素和没有重复元素两种情况. 3.在杨氏矩阵中利用二分查

二分查找JAVA实现

二分查找又称折半查找,优点是比较次数少,查找速度快,平均性能好:其缺点是要求待查表为有序表,且插入删除困难.因此,折半查找方法适用于不经常变动而查找频繁的有序列表.首先,假设表中元素是按升序排列,将表中间位置记录的关键字与查找关键字比较,如果两者相等,则查找成功:否则利用中间位置记录将表分成前.后两个子表,如果中间位置记录的关键字大于查找关键字,则进一步查找前一子表,否则进一步查找后一子表.重复以上过程,直到找到满足条件的记录,使查找成功,或直到子表不存在为止,此时查找不成功. 一.概念 二分查

rwkj 1430 二分查找

#include<iostream>using namespace std;int n,k,a[10000]; int binsearch(int low,int high){ int i,len,s;while(low<high) { len=(high+low)/2; for(s=0,i=0;i<n;i++) s+=a[i]/len; if(s>k) low=len+1; else if(s<k) high=len-1; else return len; }}int

uva:10487 - Closest Sums(二分查找)

题目:10487 - Closest Sums 题目大意:给出一组数据,再给出m个查询的数字.要求找到这组数据里的两个数据相加的和最靠近这个查询的数据,输出那两个数据的和. 解题思路:二分查找,这样找到的话,就输出查询的数值,但是要注意找不到的情况:这里最靠近的值不一定是在找不到的时刻的前一次数据,所以要维护最靠近的要查询数的数值. 代码: #include <stdio.h> #include <algorithm> #include <stdlib.h> using

php二分查找

<?php /** * 二分查找:查找一个值在数组中的位置 *@$val:查找的值 *@$arr:操作的数组,前提是按顺序排列 */ header("content-type:text/html;charset = utf-8"); function biary_search($arr,$val){ $num = count($arr); $low = 0; $high = $num - 1; while($low<$high){ $mid = floor(($high-$

二分查找算法的 JavaScript 实现

二分查找在查找[指定值]在[有序]数据中的[位置]时是一种高效的算法. 以下仅提供 ES5 版本. var arr = [0, 2, 4, 27, 28, 54, 67, 74, 75, 79, 86, 97, 289, 290, 678] function binarySearch(arr, val) { var start = 0, end = arr.length - 1; while (start <= end) { var mid = Math.floor((start + end)

深入浅出数据结构C语言版(12)——从二分查找到二叉树

在很多有关数据结构和算法的书籍或文章中,作者往往是介绍完了什么是树后就直入主题的谈什么是二叉树balabala的.但我今天决定不按这个套路来.我个人觉得,一个东西或者说一种技术存在总该有一定的道理,不是能解决某个问题,就是能改善解决某个问题的效率.如果能够先了解到存在的问题以及已存在的解决办法的不足,那么学习新的知识就更容易接受,也更容易理解. 万幸的是,二叉树的讲解是可以按照上述顺序来进行的.那么,今天在我们讨论二叉树之前,我们先来讨论一种情形.一种操作:假设现在有一个数组,数组中的数据按照某

二分查找法

今年是大年初四,晚上闲的没事儿干,在手机上随手写了二分查找法,对有序数组或者循环有序数组都挺管用! public int binarySearch(int []nums,int key){ return binarySearch(nums,key,0,nums.length); } public int binarySearch(int []nums,int key,int left,int right){ int mid = (left + right) / 2; if(left <= rig

二分查找和斐波那契查找

二分查找 说明:查找的数组或列表必须是有序的,若无序,先进行排序 复杂度:时间复杂度 O(log2n),空间复杂度O(n) C++源码(递归和非递归两个版本) #include <iostream> using namespace std; int a[] = { 1, 2, 3, 4, 5, 6, 8 }; int BinarySearch1(int l, int r, int value) { int mid = (l + r) / 2; if (l == r && a[l