About 50 results
Open links in new tab
  1. Computer Program vs. Algorithm - Computer Science Stack Exchange

    Feb 16, 2015 · As you say, an algorithm is something like "a process or set of rules to be followed in calculations or other problem-solving operations, especially by a computer." So, literally speaking, …

  2. Computer Science Stack Exchange

    Q&A for students, researchers and practitioners of computer science

  3. approximation - What algorithm do computers use to compute the …

    Dec 23, 2020 · 1 What algorithm do computers use to compute the square root of a number ? EDIT It seems there is a similar question here: Finding square root without division and initial guess But I like …

  4. mathematical programming - What is the fastest algorithm for ...

    Oct 19, 2013 · I want to know which algorithm is fastest for multiplication of two n-digit numbers? Space complexity can be relaxed here!

  5. graphs - Algorithm A vs Algorithm A*: What's the difference?

    Dec 14, 2015 · I can find quite a bit of literature on A* but very little on A. What is the difference between the two search algorithms?

  6. How to come up with the runtime of algorithms? [duplicate]

    This part of computer science is called analysis of algorithms. Many times people are satisfied when they are given a guarantee that an algorithm’s performance is not worse than a specified bound and …

  7. What is a the fastest sorting algorithm for an array of integers?

    Dec 3, 2013 · In practice, the sorting algorithm in your language's standard library will probably be pretty good (pretty close to optimal), if you need an in-memory sort. Therefore, in practice, just use …

  8. How does processing speed affect algorithm performance?

    The problems are just theoretical questions as to how processing power affects time for algorithms of different complexity. The intent of the question is simply to demonstrate why using a more efficient …

  9. Arrow notation? - Computer Science Stack Exchange

    Feb 21, 2021 · This code looks like it is simple imperative structured programming code, so the "assignment" meaning is the more likely interpretation, but if this where pseudo-code for some …

  10. What is meant by "solvable by non deterministic algorithm in …

    A non-deterministic algorithm is one where the input includes a random choice. Meaning, the input is composed of the nominal input plus a purely random selection -- so the answers differ when you run …