Skip to content

Latest commit

 

History

History
62 lines (50 loc) · 1.78 KB

SearchFunct.md

File metadata and controls

62 lines (50 loc) · 1.78 KB

Search Functions

The two functions in this file are a sequential search and a binary search.

  1. search
    This will sequential search a table until the key is found and return the number the table entry associated with this key.

    Parameters:

    • table = the table or array to be searched
    • key = the key to search for in the table
    • field = the field in the table to search

    Returns the entry in the table associated with the key. If the key is not found null is returned.

    Example:

    const names = [
        {id: 1, name: 'Jones'},
        {id: 2, name: 'Smith'},
        {id: 3, name: 'Mary'},
        {id: 4, name: 'John'},
        {id: 5, name: 'Paul'},
        {id: 6, name: 'Greg'},
        {id: 7, name: 'Tom'},
    ];
    
    let found1 = search(names, 3, 'id');
    let found2 = search(names, 23, 'id');

    Result:
    found1: {id: 3, name: 'Mary'}
    found2: null

  2. binSearch This will binary search a table until the key is found and returns the table entry associated with this key.

    Parameters:

    • table = the table or array to be searched
    • key = the key to search for in the table
    • field = the field in the table to search

    Returns the entry in the table associated with the key or null if the key is not found.

    Example:

    const names = [
        {id: 1, name: 'Jones'},
        {id: 2, name: 'Smith'},
        {id: 3, name: 'Mary'},
        {id: 4, name: 'John'},
        {id: 5, name: 'Paul'},
        {id: 6, name: 'Greg'},
        {id: 7, name: 'Tom'},
    ];
    
    let binFound1 = binSearch(names, 3, 'id');
    let binFound2 = binSearch(names, 23, 'id');

    Result:
    binFound1: {id: 3, name: 'Mary'}
    binFound2: null