您好,登錄后才能下訂單哦!
小編給大家分享一下Java高級(jí)應(yīng)用之斗地主游戲的實(shí)現(xiàn)示例,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
斗地主綜合案例,供大家參考,具體內(nèi)容如下
運(yùn)用HashMap、ArrayList、List類實(shí)現(xiàn)斗地主綜合案例,模擬斗地主游戲的隨機(jī)發(fā)牌,并按照牌的大小和花色進(jìn)行排列。
斗地主玩家每輪都有三個(gè)玩家,運(yùn)用Collections類中的shuffle()方法打亂一整幅撲克牌,利用取余原理將湊亂的牌發(fā)放給三個(gè)玩家,整副牌發(fā)完后的最后三張永一個(gè)ArrayList存儲(chǔ)作為底牌。具體代碼實(shí)現(xiàn)如下:
import java.util.ArrayList; import java.util.Collections; import java.util.HashMap; import java.util.List; /** *斗地主綜合案例:有序版本 *1.準(zhǔn)備牌 *2.洗牌 *3.發(fā)牌 *4.排序 *5.看牌 **/ public class DouDizhu02 { public static void main(String[] args) { //1。準(zhǔn)備牌 //創(chuàng)建一個(gè)Map集合,存儲(chǔ)牌的索引和組裝好的牌 HashMap<Integer, String> poker = new HashMap<>(); //List集合,存儲(chǔ)牌的索引 ArrayList<Integer> pokerIndex = new ArrayList<>(); //定義兩個(gè)集合,存儲(chǔ)花色和序號(hào) List<String> colors = List.of("?", "?", "?", "?"); List<String> numbers = List.of("2", "A", "K", "Q", "J", "10", "9", "8", "7", "6", "5", "4","3"); //把大王和小王存儲(chǔ)到集合中 int index = 0; poker.put(index, "大王"); pokerIndex.add(index); index++; poker.put(index, "小王"); pokerIndex.add(index); index++; //循環(huán)嵌套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.發(fā)牌 */ //定義四個(gè)集合,存儲(chǔ)玩家牌的索引,和底牌的索引 ArrayList<Integer> player01 = new ArrayList<>(); ArrayList<Integer> player02 = new ArrayList<>(); ArrayList<Integer> player03 = new ArrayList<>(); ArrayList<Integer> dipai = new ArrayList<>(); //遍歷存儲(chǔ)牌索引的list集合,獲取每一個(gè)牌的索引 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.看牌 調(diào)用看牌的方法 */ lookPoker("劉德華", poker, player01); lookPoker("周星馳", poker, player02); lookPoker("周潤(rùn)發(fā)", poker, player03); lookPoker("底牌", poker, dipai); } /* 定義一個(gè)看牌的方法,提高代碼的復(fù)用性 參數(shù): String name:玩家名稱 HashMap<Integer, String> poker:存儲(chǔ)牌的poker集合 ArrayList<Integer> list:存儲(chǔ)玩家和底牌的list集合 查表法: 遍歷玩家或者底牌集合,獲取牌的索引 使用牌的索引,去Map集合中找到對(duì)應(yīng)的牌 */ 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(); } }
運(yùn)行結(jié)果如下
牌為隨機(jī)打亂,每次運(yùn)行結(jié)果都不一樣。
劉德華 :?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 周潤(rùn)發(fā) :大王 小王 ?2 ?A ?K ?K ?Q ?J ?10 ?8 ?6 ?6 ?5 ?5 ?4 ?4 底牌 :?3 ?3 ?3
Java的特點(diǎn)有哪些 1.Java語(yǔ)言作為靜態(tài)面向?qū)ο缶幊陶Z(yǔ)言的代表,實(shí)現(xiàn)了面向?qū)ο罄碚摚试S程序員以優(yōu)雅的思維方式進(jìn)行復(fù)雜的編程。 2.Java具有簡(jiǎn)單性、面向?qū)ο?、分布式、安全性、平臺(tái)獨(dú)立與可移植性、動(dòng)態(tài)性等特點(diǎn)。 3.使用Java可以編寫桌面應(yīng)用程序、Web應(yīng)用程序、分布式系統(tǒng)和嵌入式系統(tǒng)應(yīng)用程序等。
以上是“Java高級(jí)應(yīng)用之斗地主游戲的實(shí)現(xiàn)示例”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。