java循环链表实现魔术师发牌问题

package com.wisdombud.zyzx.report.start;

import static java.lang.System.out;

/**
 * 功能 :
 * date : 2018/5/10
 *
 * @author : zcwang
 * @version : 0.0.4-snapshot
 * @since : JDK 1.8
 */
public class LinkLoop {
    
    public static void main(String args[]) {
        int size=13;
        Node linedList=createLikedList(size);
        Node pai=buildSeq(linedList);
        for (int i=0;i

 

你可能感兴趣的:(数据结构)