我目前正在经历一个伟大的老脑放屁并且动态地选择下一轮的获胜者将进入的下一个“回合比赛”:
上面的梯子是动态生成的,我想做的是找出下一个匹配 ID。我目前已经将其作为 POC,但如果竞争阶梯达到 64 或更多,这是不可持续的:
$ar = [
1 => [
['id' => 1,'name' => 'round1, pair 1'],
['id' => 2,'name' => 'round1, pair 2'],
['id' => 3,'name' => 'round1, pair 3'],
['id' => 4,'name' => 'round1, pair 4'],
],
2 => [
['id' => 5,'name' => 'round2, pair 1'],
['id' => 6,'name' => 'round2, pair 2'],
]
];
$cases = [0, 0, 1, 1, 2, 2];
foreach($ar as $i => $round) {
foreach($round as $_i => $r) {
echo $r['name'] . " & NEXT_MATCH_ID::> " . $ar[($i + 1)][$cases[$_i]]['id'] . "<br /> ";
}
}
例如,是否有更简单的方法来实现上述内容而无需硬编码变量 ($cases)。
本质上,“匹配/对”的数量减半,阶梯为:4 -> 2 -> 1。
上面生成了正确的 ID,但它不是可扩展的或动态的;
round1, pair 1 & NEXT_MATCH_ID::> 5
round1, pair 2 & NEXT_MATCH_ID::> 5
round1, pair 3 & NEXT_MATCH_ID::> 6
round1, pair 4 & NEXT_MATCH_ID::> 6
round2, pair 1 & NEXT_MATCH_ID::> ...
round2, pair 2 & NEXT_MATCH_ID::> ...
//......etc etc...
Demo/ Example如果需要,上面的代码。
注意事项
4, 6, 8, 10, 12, 14, 16, 18....32, 34...64。 ..等.1 比赛),因为没有进一步的轮次可以晋级。 (很容易受到 if($i == count($rounds)) {.... do not continue... 的限制。lastId + 1。最佳答案
只是数学
请记住,每一轮都包含 pow(2, Rounds - Round + 1) 团队和 pow(2, Rounds - Round) 比赛。只需将其总结为几何级数即可。
在回合 $round 之前进行的比赛数是 geometric progression 2^(rounds-1) + 2^(rounds-2) + ... 2^(rounds - round + 1) a=2^(rounds-1),r=1/2,n=round-1。它的总和是 2^(rounds) - 2^(rounds+1-round)。
因此匹配 ID 和下一个匹配 ID 只是三个参数的函数:pairnum、round、rounds。我将其计算移到了函数 getMatchId 和 getNextId 中。
示例
<?php
// just matchesInPreviousRounds + parnum
function getMatchId($pairnum, $round, $rounds) {
// matchesInPreviousRounds - is a sum of a geometric progression
// 2^(rounds-1) + 2^(rounds-2) + ... 2^(rounds - round + 1)
// with a=2^(rounds-1), r=1/2, n = round-1
// its sum is 2^(rounds) - 2^(rounds+1-round)
$inPreviousRounds = $round > 1 ? (pow(2, $rounds) - pow(2, $rounds + 1 - $round)) : 0;
$id = $inPreviousRounds + $pairnum;
return (int)$id;
}
// next id is last id of a round + half a pairnum.
function getNextId($pairnum, $round, $rounds) {
if($round === $rounds) {
return false;
}
$matchesInThisAndPreviousRounds = pow(2, $rounds) - pow(2, $rounds - $round);
$nextid = $matchesInThisAndPreviousRounds + ceil($pairnum / 2);
return (int)$nextid;
}
$divide = 64; // for 1/64 at the start
$power = round(log($divide) / log(2)); // get 6 for 64
$rounds = (int) $power + 1;
for($round = 1; $round <= $rounds; $round++) {
// every round contains 2^($rounds - $round + 1) of teams
// and has 2^($rounds - $round) of matches
$teamsLeft = pow(2, $rounds - $round + 1);
$pairsLeft = pow(2, $rounds - $round);
for($pairnum = 1; $pairnum <= $pairsLeft; $pairnum++) {
$id = getMatchId($pairnum, $round, $rounds);
$nextid = getNextId($pairnum, $round, $rounds);
echo "Round $round, pair $pairnum, id $id ";
echo "winner goes to " . $nextid ? $nextid : "A BAR" . "\n";
}
}
其结果
Round 1, pair 1, id 1, winner goes to 65
Round 1, pair 2, id 2, winner goes to 65
...
Round 1, pair 62, id 62, winner goes to 95
Round 1, pair 63, id 63, winner goes to 96
Round 1, pair 64, id 64, winner goes to 96
Round 2, pair 1, id 65, winner goes to 97
Round 2, pair 2, id 66, winner goes to 97
...
Round 2, pair 29, id 93, winner goes to 111
Round 2, pair 30, id 94, winner goes to 111
Round 2, pair 31, id 95, winner goes to 112
Round 2, pair 32, id 96, winner goes to 112
Round 3, pair 1, id 97, winner goes to 113
Round 3, pair 2, id 98, winner goes to 113
...
Round 3, pair 13, id 109, winner goes to 119
Round 3, pair 14, id 110, winner goes to 119
Round 3, pair 15, id 111, winner goes to 120
Round 3, pair 16, id 112, winner goes to 120
Round 4, pair 1, id 113, winner goes to 121
Round 4, pair 2, id 114, winner goes to 121
...
Round 4, pair 7, id 119, winner goes to 124
Round 4, pair 8, id 120, winner goes to 124
Round 5, pair 1, id 121, winner goes to 125
Round 5, pair 2, id 122, winner goes to 125
Round 5, pair 3, id 123, winner goes to 126
Round 5, pair 4, id 124, winner goes to 126
Round 6, pair 1, id 125, winner goes to 127
Round 6, pair 2, id 126, winner goes to 127
Round 7, pair 1, id 127, winner goes to A BAR
关于php - 动态获取/排序下一个多维数组元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42239239/
使用带有Rails插件的vim,您可以创建一个迁移文件,然后一次性打开该文件吗?textmate也可以这样吗? 最佳答案 你可以使用rails.vim然后做类似的事情::Rgeneratemigratonadd_foo_to_bar插件将打开迁移生成的文件,这正是您想要的。我不能代表textmate。 关于ruby-使用VimRails,您可以创建一个新的迁移文件并一次性打开它吗?,我们在StackOverflow上找到一个类似的问题: https://sta
我需要从一个View访问多个模型。以前,我的links_controller仅用于提供以不同方式排序的链接资源。现在我想包括一个部分(我假设)显示按分数排序的顶级用户(@users=User.all.sort_by(&:score))我知道我可以将此代码插入每个链接操作并从View访问它,但这似乎不是“ruby方式”,我将需要在不久的将来访问更多模型。这可能会变得很脏,是否有针对这种情况的任何技术?注意事项:我认为我的应用程序正朝着单一格式和动态页面内容的方向发展,本质上是一个典型的网络应用程序。我知道before_filter但考虑到我希望应用程序进入的方向,这似乎很麻烦。最终从任何
我想要做的是有2个不同的Controller,client和test_client。客户端Controller已经构建,我想创建一个test_clientController,我可以使用它来玩弄客户端的UI并根据需要进行调整。我主要是想绕过我在客户端中内置的验证及其对加载数据的管理Controller的依赖。所以我希望test_clientController加载示例数据集,然后呈现客户端Controller的索引View,以便我可以调整客户端UI。就是这样。我在test_clients索引方法中试过这个:classTestClientdefindexrender:template=>
如果您尝试在Ruby中的nil对象上调用方法,则会出现NoMethodError异常并显示消息:"undefinedmethod‘...’fornil:NilClass"然而,有一个tryRails中的方法,如果它被发送到一个nil对象,它只返回nil:require'rubygems'require'active_support/all'nil.try(:nonexisting_method)#noNoMethodErrorexceptionanymore那么try如何在内部工作以防止该异常? 最佳答案 像Ruby中的所有其他对象
关闭。这个问题需要detailsorclarity.它目前不接受答案。想改进这个问题吗?通过editingthispost添加细节并澄清问题.关闭8年前。Improvethisquestion为什么SecureRandom.uuid创建一个唯一的字符串?SecureRandom.uuid#=>"35cb4e30-54e1-49f9-b5ce-4134799eb2c0"SecureRandom.uuid方法创建的字符串从不重复?
有没有办法在这个简单的get方法中添加超时选项?我正在使用法拉第3.3。Faraday.get(url)四处寻找,我只能先发起连接后应用超时选项,然后应用超时选项。或者有什么简单的方法?这就是我现在正在做的:conn=Faraday.newresponse=conn.getdo|req|req.urlurlreq.options.timeout=2#2secondsend 最佳答案 试试这个:conn=Faraday.newdo|conn|conn.options.timeout=20endresponse=conn.get(url
我有一个正在构建的应用程序,我需要一个模型来创建另一个模型的实例。我希望每辆车都有4个轮胎。汽车模型classCar轮胎模型classTire但是,在make_tires内部有一个错误,如果我为Tire尝试它,则没有用于创建或新建的activerecord方法。当我检查轮胎时,它没有这些方法。我该如何补救?错误是这样的:未定义的方法'create'forActiveRecord::AttributeMethods::Serialization::Tire::Module我测试了两个环境:测试和开发,它们都因相同的错误而失败。 最佳答案
我有一个存储主机名的Ruby数组server_names。如果我打印出来,它看起来像这样:["hostname.abc.com","hostname2.abc.com","hostname3.abc.com"]相当标准。我想要做的是获取这些服务器的IP(可能将它们存储在另一个变量中)。看起来IPSocket类可以做到这一点,但我不确定如何使用IPSocket类遍历它。如果它只是尝试像这样打印出IP:server_names.eachdo|name|IPSocket::getaddress(name)pnameend它提示我没有提供服务器名称。这是语法问题还是我没有正确使用类?输出:ge
我想获取模块中定义的所有常量的值:moduleLettersA='apple'.freezeB='boy'.freezeendconstants给了我常量的名字:Letters.constants(false)#=>[:A,:B]如何获取它们的值的数组,即["apple","boy"]? 最佳答案 为了做到这一点,请使用mapLetters.constants(false).map&Letters.method(:const_get)这将返回["a","b"]第二种方式:Letters.constants(false).map{|c
我安装了ruby版本管理器,并将RVM安装的ruby实现设置为默认值,这样'哪个ruby'显示'~/.rvm/ruby-1.8.6-p383/bin/ruby'但是当我在emacs中打开inf-ruby缓冲区时,它使用安装在/usr/bin中的ruby。有没有办法让emacs像shell一样尊重ruby的路径?谢谢! 最佳答案 我创建了一个emacs扩展来将rvm集成到emacs中。如果您有兴趣,可以在这里获取:http://github.com/senny/rvm.el