bir sayı grubu içinde bir dizi php önemi

0 Cevap php

Ben sayılar, örneğin bir dizi var

$input = array(1, 4, 7, 4, 9, 4, 8, 6, 2, 8, 7, 7, 4, 5, 3);

Ben aşağıdaki kurala göre her sayının önemini çalışmak için çalışıyorum:

As the sequence gets longer the numbers get less significant, and each time a number is mentioned then it will improve the relevance (how much depends on its position in the sequence).

Ben gibi bir şey bekliyorum:

Array(
   '4' => 90%
   '1' => 75%
   '7' => 60%
   ....
)

So 4 is the most inportant, followed by 1 and then 7 etc... Note the output is completely fabricated but gives in indication that 4 should be the most important I believe I want some kind of linear solution.

Ben PHP çalışan ve bu soruna bir çözüm ile gelip çalışıyorum.

NO THIS IS NOT homework, ve asıl sorun ben belirttiğimiz çok daha karmaşık, ben sadece aşağı temel almak istedim.

Herhangi bir yardım için şimdiden teşekkür ederiz!

0 Cevap