소스 정리하다가 옛날에 축구관련 사이트 작업한게 있었는데 있길래 한번 올려봅니다.
작업당시에 기존 존재하는 소스가 있나 싶어서 찾아봤는데 없는거 같길래 만들었어요~
자주 쓰이는 경기방식중에는
1. 리그방식
2. 링크방식
3. 토너먼트방식
이렇게 존재하는데요~
아래 소스는 리그방식 생성소스입니다.
1개의 라운드 안에 중복된 팀이 경기가 잡히지 않게
기본 로직만 있는거라서 도움이 될지 모르겠네요..
<?
////////////////////////////////////////////
$jocnt = 4; // 조 갯수
$roundloopfcnt = 1; // 같은 라운드 반복 횟수:기본값1(국내프로축구에서 자주 쓰임)
$teamcnt = 12; // 조당 팀갯수
////////////////////////////////////////////
for($j=0; $j<$jocnt; $j++){
// 1개 조내의 경기수(라운드 반복 제외)
$if_jogamecnt = 0;
for($i=1; $i<$teamcnt; $i++){
$if_jogamecnt = $if_jogamecnt + $i;
}
// 팀별코드 부여
for($i=0; $i<$teamcnt; $i++){
$if_teamcode[$i] = $i+1;
}
// 1개 조내의 1개 라운내의 경기수
$if_roundincnt = floor($teamcnt/2);
// 라운드 수
$if_roundcnt = ($if_jogamecnt / $if_roundincnt) * $roundloopfcnt;
if(!($teamcnt%2)){ // 짝수
$if_teamcode_0 = array_shift($if_teamcode);
sort($if_teamcode);
}else{
$if_teamcode_temp = $if_teamcode;
$temp1 = array_pop($if_teamcode);
for($ti=1; $ti<=count($if_teamcode); $ti++){
$if_teamcode_temp[$ti] = $if_teamcode[$ti-1];
}
$if_teamcode_temp[0] = $temp1;
ksort($if_teamcode_temp);
$if_teamcode = $if_teamcode_temp;
}
$if_teamcode2 = $if_teamcode;
for($c=0; $c<$if_roundcnt; $c++){
for($i=0; $i<$if_roundincnt; $i++){
$if_gamecnt++;
if(!($teamcnt%2)){
if($i==0){
$team1 = $if_teamcode_0;
$team2 = $if_teamcode2[0];
}else{
$team1 = $if_teamcode2[$i];
$team2 = $if_teamcode2[count($if_teamcode2)-($i)];
}
}else{
$team1 = $if_teamcode2[$i+1];
$team2 = $if_teamcode2[count($if_teamcode2)-($i+1)];
}
echo "No. ".$if_gamecnt." || ".($j+1)." 조 | ".($c+1)." 라운드 | ".$team1."팀 vs ".$team2."팀<br>";
}
$temp1 = array_pop($if_teamcode2);
for($ti=1; $ti<=count($if_teamcode2); $ti++){
$if_teamcode3[$ti] = $if_teamcode2[$ti-1];
}
$if_teamcode3[0] = $temp1;
ksort($if_teamcode3);
$if_teamcode2 = $if_teamcode3;
}
}
?>
작업당시에 기존 존재하는 소스가 있나 싶어서 찾아봤는데 없는거 같길래 만들었어요~
자주 쓰이는 경기방식중에는
1. 리그방식
2. 링크방식
3. 토너먼트방식
이렇게 존재하는데요~
아래 소스는 리그방식 생성소스입니다.
1개의 라운드 안에 중복된 팀이 경기가 잡히지 않게
기본 로직만 있는거라서 도움이 될지 모르겠네요..
<?
////////////////////////////////////////////
$jocnt = 4; // 조 갯수
$roundloopfcnt = 1; // 같은 라운드 반복 횟수:기본값1(국내프로축구에서 자주 쓰임)
$teamcnt = 12; // 조당 팀갯수
////////////////////////////////////////////
for($j=0; $j<$jocnt; $j++){
// 1개 조내의 경기수(라운드 반복 제외)
$if_jogamecnt = 0;
for($i=1; $i<$teamcnt; $i++){
$if_jogamecnt = $if_jogamecnt + $i;
}
// 팀별코드 부여
for($i=0; $i<$teamcnt; $i++){
$if_teamcode[$i] = $i+1;
}
// 1개 조내의 1개 라운내의 경기수
$if_roundincnt = floor($teamcnt/2);
// 라운드 수
$if_roundcnt = ($if_jogamecnt / $if_roundincnt) * $roundloopfcnt;
if(!($teamcnt%2)){ // 짝수
$if_teamcode_0 = array_shift($if_teamcode);
sort($if_teamcode);
}else{
$if_teamcode_temp = $if_teamcode;
$temp1 = array_pop($if_teamcode);
for($ti=1; $ti<=count($if_teamcode); $ti++){
$if_teamcode_temp[$ti] = $if_teamcode[$ti-1];
}
$if_teamcode_temp[0] = $temp1;
ksort($if_teamcode_temp);
$if_teamcode = $if_teamcode_temp;
}
$if_teamcode2 = $if_teamcode;
for($c=0; $c<$if_roundcnt; $c++){
for($i=0; $i<$if_roundincnt; $i++){
$if_gamecnt++;
if(!($teamcnt%2)){
if($i==0){
$team1 = $if_teamcode_0;
$team2 = $if_teamcode2[0];
}else{
$team1 = $if_teamcode2[$i];
$team2 = $if_teamcode2[count($if_teamcode2)-($i)];
}
}else{
$team1 = $if_teamcode2[$i+1];
$team2 = $if_teamcode2[count($if_teamcode2)-($i+1)];
}
echo "No. ".$if_gamecnt." || ".($j+1)." 조 | ".($c+1)." 라운드 | ".$team1."팀 vs ".$team2."팀<br>";
}
$temp1 = array_pop($if_teamcode2);
for($ti=1; $ti<=count($if_teamcode2); $ti++){
$if_teamcode3[$ti] = $if_teamcode2[$ti-1];
}
$if_teamcode3[0] = $temp1;
ksort($if_teamcode3);
$if_teamcode2 = $if_teamcode3;
}
}
?>
[이 게시물은 관리자님에 의해 2011-10-31 17:16:08 PHP & HTML에서 이동 됨]
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 8130 | 9년 전 | 567 | ||
| 8129 |
|
9년 전 | 684 | |
| 8128 | 9년 전 | 539 | ||
| 8127 |
|
9년 전 | 588 | |
| 8126 | 9년 전 | 521 | ||
| 8125 | 9년 전 | 777 | ||
| 8124 |
|
9년 전 | 533 | |
| 8123 | 9년 전 | 520 | ||
| 8122 | 9년 전 | 451 | ||
| 8121 | 9년 전 | 559 | ||
| 8120 | 9년 전 | 480 | ||
| 8119 | 9년 전 | 569 | ||
| 8118 |
|
9년 전 | 642 | |
| 8117 |
|
9년 전 | 415 | |
| 8116 |
PASKRAN
|
9년 전 | 474 | |
| 8115 | 9년 전 | 467 | ||
| 8114 |
kiplayer
|
9년 전 | 606 | |
| 8113 | 9년 전 | 465 | ||
| 8112 |
|
9년 전 | 573 | |
| 8111 | 9년 전 | 414 | ||
| 8110 | 9년 전 | 456 | ||
| 8109 | 9년 전 | 385 | ||
| 8108 |
|
9년 전 | 563 | |
| 8107 |
|
9년 전 | 451 | |
| 8106 |
|
9년 전 | 453 | |
| 8105 | 9년 전 | 483 | ||
| 8104 |
|
9년 전 | 448 | |
| 8103 |
|
9년 전 | 446 | |
| 8102 |
|
9년 전 | 420 | |
| 8101 |
snshero
|
9년 전 | 806 | |
| 8100 | 9년 전 | 852 | ||
| 8099 | 9년 전 | 830 | ||
| 8098 | 9년 전 | 728 | ||
| 8097 | 9년 전 | 536 | ||
| 8096 | 9년 전 | 734 | ||
| 8095 | 9년 전 | 863 | ||
| 8094 | 9년 전 | 536 | ||
| 8093 | 9년 전 | 819 | ||
| 8092 | 9년 전 | 771 | ||
| 8091 | 9년 전 | 1154 | ||
| 8090 | 9년 전 | 782 | ||
| 8089 | 9년 전 | 996 | ||
| 8088 | 9년 전 | 659 | ||
| 8087 | 9년 전 | 787 | ||
| 8086 | 9년 전 | 535 | ||
| 8085 | 9년 전 | 498 | ||
| 8084 | 9년 전 | 618 | ||
| 8083 | 9년 전 | 589 | ||
| 8082 | 9년 전 | 778 | ||
| 8081 | 9년 전 | 486 | ||
| 8080 | 9년 전 | 585 | ||
| 8079 | 9년 전 | 545 | ||
| 8078 | 9년 전 | 463 | ||
| 8077 | 9년 전 | 553 | ||
| 8076 | 9년 전 | 422 | ||
| 8075 | 9년 전 | 457 | ||
| 8074 | 9년 전 | 418 | ||
| 8073 | 9년 전 | 473 | ||
| 8072 | 9년 전 | 467 | ||
| 8071 |
o1o111
|
9년 전 | 915 | |
| 8070 | 9년 전 | 422 | ||
| 8069 | 9년 전 | 360 | ||
| 8068 | 9년 전 | 615 | ||
| 8067 | 9년 전 | 412 | ||
| 8066 | 9년 전 | 437 | ||
| 8065 | 9년 전 | 400 | ||
| 8064 | 9년 전 | 392 | ||
| 8063 | 9년 전 | 359 | ||
| 8062 | 9년 전 | 327 | ||
| 8061 | 9년 전 | 367 | ||
| 8060 | 9년 전 | 405 | ||
| 8059 | 9년 전 | 340 | ||
| 8058 | 9년 전 | 279 | ||
| 8057 | 9년 전 | 406 | ||
| 8056 | 9년 전 | 324 | ||
| 8055 | 9년 전 | 372 | ||
| 8054 | 9년 전 | 381 | ||
| 8053 | 9년 전 | 432 | ||
| 8052 | 9년 전 | 306 | ||
| 8051 | 9년 전 | 354 | ||
| 8050 | 9년 전 | 409 | ||
| 8049 | 9년 전 | 342 | ||
| 8048 | 9년 전 | 449 | ||
| 8047 | 9년 전 | 384 | ||
| 8046 | 9년 전 | 329 | ||
| 8045 | 9년 전 | 275 | ||
| 8044 | 9년 전 | 361 | ||
| 8043 | 9년 전 | 316 | ||
| 8042 | 9년 전 | 308 | ||
| 8041 | 9년 전 | 371 | ||
| 8040 | 9년 전 | 294 | ||
| 8039 | 9년 전 | 336 | ||
| 8038 | 9년 전 | 281 | ||
| 8037 | 9년 전 | 424 | ||
| 8036 | 9년 전 | 513 | ||
| 8035 | 9년 전 | 446 | ||
| 8034 | 9년 전 | 406 | ||
| 8033 | 9년 전 | 367 | ||
| 8032 | 9년 전 | 469 | ||
| 8031 | 9년 전 | 364 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기