vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   Hacking "Test" (https://vborg.vbsupport.ru/showthread.php?t=52362)

amykhar 05-01-2003 02:27 PM

How about a nudge in the right direction?

The code in that hack that looks for the top poster is basically a simple algorithm that looks for the highest number in an array. A very trivial way to do this is to set a temp variable called max to 0 and then loop through the array element by element.

Each element in the array is compared with the value in max. If the element is greater than max, max is set to that new value and the testing continues.

If you want to find the biggest 3 elements in the array, you need three temp variables (max1, max2, and max3)

Again, you cycle through the array. First, you check to see if the element in the array is bigger than max3. If it is, you check to seee if it is bigger than max2. If it is, you check to see if it's bigger than max1. If it's bigger than max1, you set max1 to that value.

If it's not bigger than max1, but is bigger than max2, you set max2 to the new value. (This is now the second highest element)

If it's bigger than max3 but not bigger than max2, you update max3 and you have the third highest element.

So, basically, you are looking at some nested loops.

Once you have the three highest numbers, you just use those values to calculate the 3 averages, and boom. You are done.

Amy

grog6 05-01-2003 02:36 PM

I don't do the same thing at all Amy ;)

I've totally remove the $max variable ;) and create a small loop which order all $couts[] and $nom[] in an DESCending order, so I've only to show $counts[0] and $nom[0], $counts[1] .... to display the number of total best threads creator I want to :)

The advantage, is that I can display a top3, top 5, or top 10 whithout having to modify my code :)

[high]* grog6 loves vb.org, so I can improve my coding and I hope my bad english :p[/high]

Boofo 05-01-2003 02:39 PM

Well, you both lost me on that.


All times are GMT. The time now is 07:23 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01078 seconds
  • Memory Usage 1,711KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (3)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete