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 6374795
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T01:31:57+00:00 2026-05-25T01:31:57+00:00

I have points assigned to each player like this: player1 = 20 , player2

  • 0

I have points assigned to each player like this:

player1 = 20 , player2 = 30, player3 = 50, player4 = 10, player5 = 25 and so on.

and these points change as they score more points. What i am trying to do is if player2 looks at his page he should see which player of all has highest score, where he is in all players and who has the lowest score? What is the best way to do this in php? So it will show something like this:

Highest Scorer                 Player2                              Lowest Score
    player3       you are 2nd highest out of 5 players               player4
  • 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-25T01:31:58+00:00Added an answer on May 25, 2026 at 1:31 am
    // $users is an array in the form: playerID => score
    $minScore = 0; $minScoreUser;
    $maxScore = -1; $maxScoreUser;
    $thisScore; $thisPlayer;
    foreach ($users as $player => $score)
    {
       if ( $player == $queryPlayer )
       {
           $thisScore = $score;
           $thisPlayer = $player;
       }
       if ( $maxScore < 0 || $score > $maxScore )
       {
           $maxScore = $score;
           $maxScorePlayer = $player;
       }
       if ( $score < $minScore )
       {
           $minScore = $score;
           $minScorePlayer = $player;
       }
    }
    
    $higherCount = 0;
    foreach ($users as $player => $score)
        if ( $score > $thisScore ) $higherCount++;
    

    $minScore and $minScorePlayer is the lowest player

    $maxScore and $maxScorePlayer is the highest player

    $thisScore and $thisPlayer is the player you are interested in

    $higherCount is the number of players with higher score than your player

    The above has a complexity of O(n)

    The sorting solution has a complexity of O(n * logn )

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

Sidebar

Related Questions

I have two points (a line segment) and a rectangle. I would like to
I'm developing a QA web-app which will have some points to evaluated assigned to
For example, I have points Y X 100 50 90 43 80 32 need
I have 3 points in a 3D space of which I know the exact
I have 3 points (A, B and X) and a distance (d). I need
I have the points by the end of the GenerateButton class but now that
I have two points in 3D space: a = (ax, ay, az) b =
I have 2d-points (x,y) with float coordinates, when I draw them, I need to
i have two points in 3D space which have X-coordinates with different signum. so
I have 3 points ( lat , lon ) that form a triangle.How can

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.