Lost your password?

Blogs about: Binary Search

Featured Blog

B-tree in PHP1 comment

moryadesigns wrote 3 months ago:  B-tree code in php <?php  /***********************************************   * PHP Binary Tree C … more →

Tags: Php scripts, moryadesigns, php, B-tree, Code, B-tree code, Time to search, Index speeds, insertions

Binary Search1 comment

alanlavintman wrote 3 months ago: During the last months i start going deep into searching and indexing techniques given the fact that … more →

Tags: Search, Algorithms

Algorithms for Web Developers

Mobu wrote 4 months ago: Referring to my post below, I was thinking about the algorithms that actually have practical usage i … more →

Tags: algorithm, union find, Google, PageRank, dijkstra

The Most Important Algorithms

Mobu wrote 4 months ago: After a long time, I am posting a link to a collection of some of the most important algorithms for … more →

Tags: algorithm, A* algorithm, encryption, Search, Sorting, merge sort, quicksort, heapsort, union find

merge sort & binary search

stefansaru wrote 5 months ago: This was an exercise for the algorithms class. I found it very useful for myself to remember the mer … more →

Tags: C#, binary, Search, merge sort, merge, sort, example

BINARY SEARCH

DHARMA ATMAJA wrote 5 months ago: BINARY SEARCH Metoda Pencarian Biner ( Binary Search) hanya bisa diterapkan jika data array sudah te … more →

Tags: C#, SEARCHING C++

High Dimensional Search and the NN Problem12 comments

rjlipton wrote 6 months ago: The early days of computational geometry and the nearest neighbor problem David Dobkin is one of the … more →

Tags: History, People, Proofs, Algorithms, computational geometry, Dimension, nearest neighbors, Problems, slab method

Putting Autocomplete Data Structures to the Test6 comments

stevedaskam wrote 6 months ago: I ran a simple test to compare the Radix Tree implementation I found on the web with the Trie implem … more →

Tags: data structures, Trie, radix trie

Algorithm and Code

khansalmanahmad wrote 7 months ago: What came first, the algorithm or the code? To the modern day developers, there may or may not be a … more →

Tags: Programming, computation, technology, algorithm, Code, Code Failure

Binary Search Java implementation

hhimanshu wrote 9 months ago: package com.bundle.algos; //Usage : binarySearch(int[] array,int array_start, int array_end,int num_ … more →

Tags: Algorithms, Java, implementation

A generic binary search implementation in C - thoughts

awmanoj wrote 9 months ago: This is an attempt to discuss a problem I’ve come across. Some common things that I would like … more →

Tags: program, Generic, Array, Programming, interviews

NZB Search Engine or Binary Search Engine

bollyrocks wrote 10 months ago: Just came acrross CompleteISOS.com it’s a wonderfull NZB Search Engine or you can even call it … more →

Tags: Download, NzB, Usenet, Search, Search Engine, NewS [Group], binary search engine

Binary Search

cpluspluscoded wrote 1 year ago: this program searches an array to find  given number using technique of Binary Search.   #include … more →

Tags: Uncategorized

Search Programs

ucancode wrote 1 year ago: To search an element stored in the Linear list , we can use Linear search or Binary search.The Binar … more →

Tags: data structures, ucancode, Linear Search

Uniform Search – An intelligent and better search on sorted data

opendu wrote 1 year ago: <script type="text/javascript"> var gaJsHost = (("https:" == document.location.protocol) ? "ht … more →

Tags: technology, Search, Uniform Search, Sorting, General search, Searching

Google interview Binary search

samircode wrote 1 year ago: recursive binarysearch(int array,int lower, int upper, int target) { int center=(upper-lower)/2+lowe … more →

Tags: cs job interview, Google, Interview

Is your binary search broken?

wonderingpondering wrote 1 year ago: It probably is, unless you have done some extraordinary testing. In fact, the binary searches delive … more →

Tags: Geek stuff, Work, Programming, coding, Program code, Broken binary search, Binary search routines, Program library, SDK

90071992547409928 comments

Nosredna wrote 1 year ago: After my discussion of JavaScript’s numeric limitations when working with integers, I was curi … more →

Tags: javascript, 9007199254740992, Double, floating point, IEEE 754, Infinite Loop, largest integer, Precision

Make the Common Case Fast

Chad Waters wrote 1 year ago: In making a design trade-off, favor the frequent case over the infrequent case. 1. Introduction For … more →

Tags: Algorithms, Education


Related Tags
All →

Follow this tag via RSS