Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

二分查找 #3

Open
markexin opened this issue Nov 10, 2023 · 0 comments
Open

二分查找 #3

markexin opened this issue Nov 10, 2023 · 0 comments
Labels
算法 This issue or pull request already exists

Comments

@markexin
Copy link
Owner

markexin commented Nov 10, 2023

二分查找的基本公式:

int binarySearch(int[] nums, int target) {
    int left = 0; 
    int right = nums.length - 1; // 注意

    while(left <= right) {
        int mid = left + (right - left) / 2;
        if(nums[mid] == target)
            return mid; 
        else if (nums[mid] < target)
            left = mid + 1; // 注意
        else if (nums[mid] > target)
            right = mid - 1; // 注意
    }
    return -1;
}
@markexin markexin added the 算法 This issue or pull request already exists label Nov 10, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
算法 This issue or pull request already exists
Projects
None yet
Development

No branches or pull requests

1 participant