Code Monkey home page Code Monkey logo

algorithm's Introduction

#Some algorithms

Chapter 2

Loop invariant:

Loop invariants can help us understand if an algorithm is correct or not. Three thins should be investigated about loop invariant:

  • Initialization: It should be true before the first iteration. corresponding to base case of mathmatical induction.
  • Maintenance: If it's true before on step then it should be true before the next step. same to the inductive step.
  • Termination:: When the loop ends, we should have conditions to determine the algorithm is correct. Different from induction.

Pseudocod of Insertion Sort

Insertion_Sort(A)
    for j = 2 to A.length
        key = A[j]
        i = j-1
        while i > 0 and A[i] > key
          A[i+1] = A[i]
          i = i - 1
    A[i+1] = key

The running time of an algorithm on a particular input is the number of primitive operations or “steps” executed. The running time of insertion sort is

Divide and Conquer

Divide the complicate problem to many small and fimilar problems, sovle subproblems recursively, and combine result of subproblems to get the result of the original problem.

  • Divide: divide the problem into many subproblems that are smaller instances of the same problem.
  • Conquer: solve subproblems recursively , mostly useing same method. If the subproblem is small enough then solve it directly.
  • Combine: combine the reuslt of subproblems to get the result of the original one.

algorithm's People

Contributors

yannliao avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.