자바 고급 응용 투 지주 게임
HashMap,Array List,List 류 를 활용 하여 두 지주 종합 사례 를 실현 하고 두 지주 게임 의 랜 덤 카드 를 모 의 한 다음 에 카드 의 크기 와 색깔 에 따라 배열 한다.
두 지주 유 저 는 매 라운드 에 세 명의 게이머 가 있 습 니 다.Collections 류 중의 shuffle()방법 으로 전체 카드 를 어 지 럽 히 고 나머지 원 리 를 이용 하여 어 지 러 운 카드 를 세 명의 게이머 에 게 보 냅 니 다.전체 카드 를 보 낸 후의 마지막 세 장 은 영원히 하나의 Array List 를 베이스 카드 로 저장 합 니 다.구체 적 인 코드 는 다음 과 같다.
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
/**
* :
*1.
*2.
*3.
*4.
*5.
**/
public class DouDizhu02 {
public static void main(String[] args) {
//1。
// Map ,
HashMap<Integer, String> poker = new HashMap<>();
//List ,
ArrayList<Integer> pokerIndex = new ArrayList<>();
// ,
List<String> colors = List.of("♥", "♦", "♠", "♣");
List<String> numbers = List.of("2", "A", "K", "Q", "J", "10", "9", "8", "7", "6", "5", "4","3");
//
int index = 0;
poker.put(index, " ");
pokerIndex.add(index);
index++;
poker.put(index, " ");
pokerIndex.add(index);
index++;
// 52
for(String number: numbers){
for(String color : colors){
poker.put(index, color + number);
pokerIndex.add(index);
index++;
}
}
// System.out.println(poker);
// System.out.println(pokerIndex);
/*
2.
Collections shuffle(list)
*/
Collections.shuffle(pokerIndex);
/*
3.
*/
// , ,
ArrayList<Integer> player01 = new ArrayList<>();
ArrayList<Integer> player02 = new ArrayList<>();
ArrayList<Integer> player03 = new ArrayList<>();
ArrayList<Integer> dipai = new ArrayList<>();
// list ,
for (int i = 0; i < pokerIndex.size(); i++) {
Integer in = pokerIndex.get(i);
if(in >= 51){
dipai.add(in);
}else if(i % 3 == 0){
player01.add(in);
}else if(i % 3 == 1){
player02.add(in);
}else if(i % 3 == 2){
player03.add(in);
}
}
/*
4.
Collections sort(List)
*/
Collections.sort(player01);
Collections.sort(player02);
Collections.sort(player03);
Collections.sort(dipai);
/*
5.
*/
lookPoker(" ", poker, player01);
lookPoker(" ", poker, player02);
lookPoker(" ", poker, player03);
lookPoker(" ", poker, dipai);
}
/*
,
:
String name:
HashMap<Integer, String> poker: poker
ArrayList<Integer> list: list
:
,
, Map
*/
public static void lookPoker(String name, HashMap<Integer, String> poker, ArrayList<Integer> list){
// ,
System.out.print(name + " :");
for(int key : list){
String value = poker.get(key);
System.out.print(value + " ");
}
System.out.println();
}
}
실행 결 과 는 다음 과 같다.카드 는 무 작위 로 흐 트 러 져 서 매번 운행 결과 가 다르다.
:♥2 ♦2 ♠A ♦K ♠Q ♣Q ♥9 ♣9 ♥8 ♣8 ♦7 ♠7 ♣7 ♦6 ♣6 ♥5 ♠5 ♥3
:♠2 ♥A ♦A ♣K ♦Q ♥J ♦J ♣J ♥10 ♦10 ♠10 ♦9 ♠9 ♦8 ♥7 ♠4 ♣4
: ♣2 ♣A ♥K ♠K ♥Q ♠J ♣10 ♠8 ♥6 ♠6 ♦5 ♣5 ♥4 ♦4
:♦3 ♠3 ♣3
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.