Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6061985
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T08:59:57+00:00 2026-05-23T08:59:57+00:00

Is it possible for an algorithm/program to have the same worst-case and best-case time?

  • 0

Is it possible for an algorithm/program to have the same worst-case and best-case time?

For example:

public static int factorial(int number)
{
    factorial = 1; 
    for (i = 1; i <= number; i++) 
        factorial = factorial * i;
}

It’s a program segment for the factorial problem, and I was trying to solve for the time complexity. It seems to have no worst and best case time, since whatever input you may have it will still go through the rest of the code, unlike when you have if-else statements.

If that’s the case should I assume that what ever I get from this code it would be the best, worst and average case time?

Did I get this right?

public static int factorial(int number)
    {
        factorial = 1;                   // 1
        for (i = 1; i <= number; i++)    // 1+3n
            factorial = factorial * i;   // 2
        return factorial;                // 1
    }

Worst Case/Best Case:
3n+5

Big – O :
O(n)

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T08:59:58+00:00Added an answer on May 23, 2026 at 8:59 am

    In your case when "number" is fixed, your program has no worst or best case – it always does "number" iterations, so it has a linear complexity.
    For formal mathematical definitions see these articles:
    http://en.wikipedia.org/wiki/Analysis_of_algorithms
    http://en.wikipedia.org/wiki/Big_O_notation

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been asked to program a routine to decide the number of possible
I needed an algorithm to generate all possible partitions of a positive number, and
Possible Duplicate: How does the Google Did you mean? Algorithm work? Suppose you have
I have to create a program that finds all the possible ways of filling
Possible Duplicate: Algorithm to find minimum number of weighings required to find defective ball
i have the following program. #include <iostream> #include <vector> #include <algorithm> #include <cassert> #include
Possible Duplicate: substring algorithm Given two strings, A and B, how to find the
Just for kind of fun I'm developing almost every algorithm (if possible) shown in
Algorithm to generate all possible letter combinations of given string down to 2 letters
I'm trying to come up with an algorithm that will print out all possible

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.