Skip to content

Commit

Permalink
binary search
Browse files Browse the repository at this point in the history
  • Loading branch information
0xAX committed Aug 12, 2014
1 parent f7794af commit 192c15d
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
Binary file added searching/binarySearch
Binary file not shown.
45 changes: 45 additions & 0 deletions searching/binarySearch.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
package main

import "fmt"
//import "sort"

func main() {
searchValue := 0

arr := [10]int{1, 5, 100, 0, -100, 15, 4, 102, 30, 1000}

tmp := 0

for i := 0; i < len(arr); i++ {
for j := 0; j < len(arr) - 1; j++ {
if arr[j] > arr[j + 1] {
tmp = arr[j]
arr[j] = arr[j + 1]
arr[j + 1] = tmp
}
}
}

left := 0
right := len(arr) - 1

if right < left {
fmt.Println("Not found")
return
}

for ; left <= right ; {
mid := (left + right) / 2

if arr[mid] == searchValue {
fmt.Println("Found at position: ", mid)
return
} else if arr[mid] < searchValue {
left = mid + 1
} else {
right = mid - 1
}
}

fmt.Println("Not found")
}

0 comments on commit 192c15d

Please sign in to comment.