Finding a Pattern in an Array of Strings (Java) 寻找字符串数组中的模式(Java)

huangapple go评论70阅读模式
英文:

Finding a Pattern in an Array of Strings (Java)

问题

I understand you're looking for assistance with your code, specifically related to pattern matching and winning detection. Here's the translated code portion with explanations:

// 以下是用于确定局部/全局胜利的内容;这里情况变得复杂。

// 定义胜利模式
static final Pattern[][] winPatterns = new Pattern[][] {
    // 局部面板 1
    {Pattern.compile("!\"#\"", Pattern.LITERAL), Pattern.compile("$%&", Pattern.LITERAL), Pattern.compile("'()'", Pattern.LITERAL), Pattern.compile("!$'\"", Pattern.LITERAL), Pattern.compile("\"%('\"", Pattern.LITERAL), Pattern.compile("#&')", Pattern.LITERAL), Pattern.compile("!%)", Pattern.LITERAL), Pattern.compile("'$%#", Pattern.LITERAL)},
    // 局部面板 2
    {Pattern.compile("*+,", Pattern.LITERAL), Pattern.compile("-./", Pattern.LITERAL), Pattern.compile("0:;", Pattern.LITERAL), Pattern.compile("*-0", Pattern.LITERAL), Pattern.compile("+.:", Pattern.LITERAL), Pattern.compile(",/;", Pattern.LITERAL), Pattern.compile("*.;", Pattern.LITERAL), Pattern.compile("0.,", Pattern.LITERAL)},
    // 局部面板 3
    {Pattern.compile("<=>", Pattern.LITERAL), Pattern.compile("?@A", Pattern.LITERAL), Pattern.compile("BCD", Pattern.LITERAL), Pattern.compile("<?B", Pattern.LITERAL), Pattern.compile("=@C", Pattern.LITERAL), Pattern.compile(">AD", Pattern.LITERAL), Pattern.compile("<@D", Pattern.LITERAL), Pattern.compile("B@>", Pattern.LITERAL)},
    // 局部面板 4
    {Pattern.compile("EFG", Pattern.LITERAL), Pattern.compile("HIJ", Pattern.LITERAL), Pattern.compile("KLM", Pattern.LITERAL), Pattern.compile("EHK", Pattern.LITERAL), Pattern.compile("FIL", Pattern.LITERAL), Pattern.compile("GJM", Pattern.LITERAL), Pattern.compile("EIM", Pattern.LITERAL), Pattern.compile("KIG", Pattern.LITERAL)},
    // 局部面板 5
    {Pattern.compile("NPQ", Pattern.LITERAL), Pattern.compile("RST", Pattern.LITERAL), Pattern.compile("UVW", Pattern.LITERAL), Pattern.compile("NRU", Pattern.LITERAL), Pattern.compile("PSV", Pattern.LITERAL), Pattern.compile("QTW", Pattern.LITERAL), Pattern.compile("NSW", Pattern.LITERAL), Pattern.compile("USQ", Pattern.LITERAL)},
    // 局部面板 6
    {Pattern.compile("YZ[", Pattern.LITERAL), Pattern.compile("\\]^]", Pattern.LITERAL), Pattern.compile("`ab", Pattern.LITERAL), Pattern.compile("Y`", Pattern.LITERAL), Pattern.compile("Z]a", Pattern.LITERAL), Pattern.compile("[^b", Pattern.LITERAL), Pattern.compile("Y]b", Pattern.LITERAL), Pattern.compile("`][", Pattern.LITERAL)},
    // 局部面板 7
    {Pattern.compile("cde", Pattern.LITERAL), Pattern.compile("fgh", Pattern.LITERAL), Pattern.compile("ijk", Pattern.LITERAL), Pattern.compile("cfi", Pattern.LITERAL), Pattern.compile("dgj", Pattern.LITERAL), Pattern.compile("ehk", Pattern.LITERAL), Pattern.compile("cgk", Pattern.LITERAL), Pattern.compile("ige", Pattern.LITERAL)},
    // 局部面板 8
    {Pattern.compile("lmn", Pattern.LITERAL), Pattern.compile("opq", Pattern.LITERAL), Pattern.compile("rst", Pattern.LITERAL), Pattern.compile("lor", Pattern.LITERAL), Pattern.compile("mps", Pattern.LITERAL), Pattern.compile("nqt", Pattern.LITERAL), Pattern.compile("lpt", Pattern.LITERAL), Pattern.compile("rpn", Pattern.LITERAL)},
    // 局部面板 9
    {Pattern.compile("uvw", Pattern.LITERAL), Pattern.compile("xyz", Pattern.LITERAL), Pattern.compile("{}~", Pattern.LITERAL), Pattern.compile("ux{", Pattern.LITERAL), Pattern.compile("vy}", Pattern.LITERAL), Pattern.compile("wz~", Pattern.LITERAL), Pattern.compile("uy~", Pattern.LITERAL), Pattern.compile("{yw", Pattern.LITERAL)},
    // 全局面板
    {Pattern.compile("123", Pattern.LITERAL), Pattern.compile("456", Pattern.LITERAL), Pattern.compile("789", Pattern.LITERAL), Pattern.compile("147", Pattern.LITERAL), Pattern.compile("258", Pattern.LITERAL), Pattern.compile("369", Pattern.LITERAL), Pattern.compile("159", Pattern.LITERAL), Pattern.compile("357", Pattern.LITERAL)}
};

// 胜利检测方法

// 标志变量
static boolean flag0, flag1, flag2, flag3, flag4, flag5, flag6, flag7, flag8 = true;

static void findWinPatterns(String score) {
    for (int i = 0; i < winPatterns.length; i++) {
        for (Pattern pattern : winPatterns[i]) {
            Matcher matcher = pattern.matcher(score);
            boolean matchFound = matcher.find();
            if (matchFound) {
                System.out.println("3 in a row! i = " + i);
                // ... 与之前相同的所有内容 ...
            }
        }
    }
}
// 主方法在此

It seems that you're trying to match specific patterns in a player's score string. If the order of characters in the string matters, using Pattern.LITERAL as you did in the code is correct. However, if the order doesn't matter, you might need to adjust the patterns accordingly.

Feel free to ask if you have any specific questions or need further assistance with this code.

英文:

What's up, everyone? I am trying to create a simple game where depending on moves a player makes, some character gets appended to their String (likewise for a second player). The game is supposed to detect whether specific characters show up in those Strings, regardless of where in the Strings they appear. Combinations of 3 characters are needed to make progress.

So, for example, one successful move a player might make would append the characters "c", "d", and "e" somewhere in their String, say "abcde". When the game detects "cde" in their String, they win something. However, if that player's String were instead "ifc4_d'e", the game doesn't detect that win, despite containing the same characters.

EDIT: There are three code snippets below, but don't be alarmed; the latter two are just the first one but with a slightly altered array and/or findWinPatterns() method.

Here was my initial code:

// The following is used for determining local/global wins.
static final String[][] winPatterns = new String[][] {
// Local board 1
{&quot;!\&quot;#&quot;, &quot;$%&amp;&quot;, &quot;\&#39;()&quot;, &quot;!$\&#39;&quot;, &quot;\&quot;%(&quot;, &quot;#&amp;)&quot;, &quot;!%)&quot;, &quot;\&#39;%#&quot;},
// Local board 2
{&quot;*+,&quot;, &quot;-./&quot;, &quot;0:;&quot;, &quot;*-0&quot;, &quot;+.:&quot;, &quot;,/;&quot;, &quot;*.;&quot;, &quot;0.,&quot;},
// Local board 3
{&quot;&lt;=&gt;&quot;, &quot;?@A&quot;, &quot;BCD&quot;, &quot;&lt;?B&quot;, &quot;=@C&quot;, &quot;&gt;AD&quot;, &quot;&lt;@D&quot;, &quot;B@&gt;&quot;},
// Local board 4
{&quot;EFG&quot;, &quot;HIJ&quot;, &quot;KLM&quot;, &quot;EHK&quot;, &quot;FIL&quot;, &quot;GJM&quot;, &quot;EIM&quot;, &quot;KIG&quot;},
// Local board 5
{&quot;NPQ&quot;, &quot;RST&quot;, &quot;UVW&quot;, &quot;NRU&quot;, &quot;PSV&quot;, &quot;QTW&quot;, &quot;NSW&quot;, &quot;USQ&quot;},
// Local board 6
{&quot;YZ[&quot;, &quot;\\]^&quot;, &quot;`ab&quot;, &quot;Y\\`&quot;, &quot;Z]a&quot;, &quot;[^b&quot;, &quot;Y]b&quot;, &quot;`][&quot;},
// Local board 7
{&quot;cde&quot;, &quot;fgh&quot;, &quot;ijk&quot;, &quot;cfi&quot;, &quot;dgj&quot;, &quot;ehk&quot;, &quot;cgk&quot;, &quot;ige&quot;},
// Local board 8
{&quot;lmn&quot;, &quot;opq&quot;, &quot;rst&quot;, &quot;lor&quot;, &quot;mps&quot;, &quot;nqt&quot;, &quot;lpt&quot;, &quot;rpn&quot;},
// Local board 9
{&quot;uvw&quot;, &quot;xyz&quot;, &quot;{}~&quot;, &quot;ux{&quot;, &quot;vy}&quot;, &quot;wz~&quot;, &quot;uy~&quot;, &quot;{yw&quot;},
// Global board
{&quot;123&quot;, &quot;456&quot;, &quot;789&quot;, &quot;147&quot;, &quot;258&quot;, &quot;369&quot;, &quot;159&quot;, &quot;357&quot;}
};
// WIN DETECTION METHOD
// Flag variables
static boolean flag0, flag1, flag2, flag3, flag4, flag5, flag6, flag7, flag8 = true;
static void findWinPatterns(String score) {
for (int i = 0; i &lt; winPatterns.length; i++) {
for (String pattern : winPatterns[i]) {
if (score.contains(pattern)) {
System.out.println(&quot;3 in a row!&quot; + &quot; i = &quot; + i);
/*
switch (i) {
case 0:
if (flag0) {
System.out.println(&quot;[Player] has won Local Board 1!&quot;);
flag0 = false;
}
break;
case 1:
if (flag1) {
System.out.println(&quot;[Player] has won Local Board 2!&quot;);
flag1 = false;
}
break;
case 2:
if (flag2) {
System.out.println(&quot;[Player] has won Local Board 3!&quot;);
flag2 = false;
}
break;
case 3:
if (flag3) {
System.out.println(&quot;[Player] has won Local Board 4!&quot;);
flag3 = false;
}
break;
case 4:
if (flag4) {
System.out.println(&quot;[Player] has won Local Board 5!&quot;);
flag4 = false;
}
break;
case 5:
if (flag5) {
System.out.println(&quot;[Player] has won Local Board 6!&quot;);
flag5 = false;
}
break;
case 6:
if (flag6) {
System.out.println(&quot;[Player] has won Local Board 7!&quot;);
flag6 = false;
}
break;
case 7:
if (flag7) {
System.out.println(&quot;[Player] has won Local Board 8!&quot;);
flag7 = false;
}
break;
case 8:
if (flag8) {
System.out.println(&quot;[Player] has won Local Board 9!&quot;);
flag8 = false;
}
break;
case 9:
// WINNER DECLARED
break;
}
*/
}
}
}
}
// MAIN METHOD HERE

This compiled, but because the contains() method only detects exact Strings, in order, it isn't suitable for my game. Then I tried this:

// The following is used for determining local/global wins.
static final String[][] winPatterns = new String[][] {
// Local board 1
{&quot;[!\&quot;#]&quot;, &quot;[$%&amp;]&quot;, &quot;[\&#39;()]&quot;, &quot;[!$\&#39;]&quot;, &quot;[\&quot;%(]&quot;, &quot;[#&amp;)]&quot;, &quot;[!%)]&quot;, &quot;[\&#39;%#]&quot;},
// Local board 2
{&quot;[*+,]&quot;, &quot;[-./]&quot;, &quot;[0:;]&quot;, &quot;[*-0]&quot;, &quot;[+.:]&quot;, &quot;[,/;]&quot;, &quot;[*.;]&quot;, &quot;[0.,]&quot;},
// Local board 3
{&quot;[&lt;=&gt;]&quot;, &quot;[?@A]&quot;, &quot;[BCD]&quot;, &quot;[&lt;?B]&quot;, &quot;[=@C]&quot;, &quot;[&gt;AD]&quot;, &quot;[&lt;@D]&quot;, &quot;[B@&gt;]&quot;},
// Local board 4
{&quot;[EFG]&quot;, &quot;[HIJ]&quot;, &quot;[KLM]&quot;, &quot;[EHK]&quot;, &quot;[FIL]&quot;, &quot;[GJM]&quot;, &quot;[EIM]&quot;, &quot;[KIG]&quot;},
// Local board 5
{&quot;[NPQ]&quot;, &quot;[RST]&quot;, &quot;[UVW]&quot;, &quot;[NRU]&quot;, &quot;[PSV]&quot;, &quot;[QTW]&quot;, &quot;[NSW]&quot;, &quot;[USQ]&quot;},
// Local board 6
{&quot;[YZ\\[]&quot;, &quot;[\\\\]^]&quot;, &quot;[`ab]&quot;, &quot;[Y\\`]&quot;, &quot;[Z\\]a]&quot;, &quot;[\\[^b]&quot;, &quot;[Y\\]b]&quot;, &quot;[`\\]\\[]&quot;},
// Local board 7
{&quot;[cde]&quot;, &quot;[fgh]&quot;, &quot;[ijk]&quot;, &quot;[cfi]&quot;, &quot;[dgj]&quot;, &quot;[ehk]&quot;, &quot;[cgk]&quot;, &quot;[ige]&quot;},
// Local board 8
{&quot;[lmn]&quot;, &quot;[opq]&quot;, &quot;[rst]&quot;, &quot;[lor]&quot;, &quot;[mps]&quot;, &quot;[nqt]&quot;, &quot;[lpt]&quot;, &quot;[rpn]&quot;},
// Local board 9
{&quot;[uvw]&quot;, &quot;[xyz]&quot;, &quot;[{}~]&quot;, &quot;[ux{]&quot;, &quot;[vy}]&quot;, &quot;[wz~]&quot;, &quot;[uy~]&quot;, &quot;[{yw]&quot;},
// Global board
{&quot;[123]&quot;, &quot;[456]&quot;, &quot;[789]&quot;, &quot;[147]&quot;, &quot;[258]&quot;, &quot;[369]&quot;, &quot;[159]&quot;, &quot;[357]&quot;}
};
// WIN DETECTION METHOD
// Flag variables
static boolean flag0, flag1, flag2, flag3, flag4, flag5, flag6, flag7, flag8 = true;
static void findWinPatterns(String score) {
for (int i = 0; i &lt; winPatterns.length; i++) {
for (String pattern : winPatterns[i]) {
if (score.matches(pattern)) {
System.out.println(&quot;3 in a row!&quot; + &quot; i = &quot; + i);
// ... all the same stuff as before ...
}
}
}
}
// MAIN METHOD HERE

This also compiled, but it didn't work, and I assume it is because my RegEx is terrible. I used this website to confirm this, but fixing it was going to take ages and it didn't seem at all clean either. So I opted to use the Pattern and Matcher classes to make some easier-to-read code, and... well:

// The following is used for determining local/global wins; here&#39;s where things get UGLY.
static final Pattern[][] winPatterns = new Pattern[][] {
// Local board 1
{Pattern.compile(&quot;!\&quot;#&quot;, Pattern.LITERAL), Pattern.compile(&quot;$%&amp;&quot;, Pattern.LITERAL), Pattern.compile(&quot;&#39;()&quot;, Pattern.LITERAL), Pattern.compile(&quot;!$&#39;&quot;, Pattern.LITERAL), Pattern.compile(&quot;\&quot;%(&quot;, Pattern.LITERAL), Pattern.compile(&quot;#&amp;)&quot;, Pattern.LITERAL), Pattern.compile(&quot;!%)&quot;, Pattern.LITERAL), Pattern.compile(&quot;&#39;%#&quot;, Pattern.LITERAL)},
// Local board 2
{Pattern.compile(&quot;*+,&quot;, Pattern.LITERAL), Pattern.compile(&quot;-./&quot;, Pattern.LITERAL), Pattern.compile(&quot;0:;&quot;, Pattern.LITERAL), Pattern.compile(&quot;*-0&quot;, Pattern.LITERAL), Pattern.compile(&quot;+.:&quot;, Pattern.LITERAL), Pattern.compile(&quot;,/;&quot;, Pattern.LITERAL), Pattern.compile(&quot;*.;&quot;, Pattern.LITERAL), Pattern.compile(&quot;0.,&quot;, Pattern.LITERAL)},
// Local board 3
{Pattern.compile(&quot;&lt;=&gt;&quot;, Pattern.LITERAL), Pattern.compile(&quot;?@A&quot;, Pattern.LITERAL), Pattern.compile(&quot;BCD&quot;, Pattern.LITERAL), Pattern.compile(&quot;&lt;?B&quot;, Pattern.LITERAL), Pattern.compile(&quot;=@C&quot;, Pattern.LITERAL), Pattern.compile(&quot;&gt;AD&quot;, Pattern.LITERAL), Pattern.compile(&quot;&lt;@D&quot;, Pattern.LITERAL), Pattern.compile(&quot;B@&gt;&quot;, Pattern.LITERAL)},
// Local board 4
{Pattern.compile(&quot;EFG&quot;, Pattern.LITERAL), Pattern.compile(&quot;HIJ&quot;, Pattern.LITERAL), Pattern.compile(&quot;KLM&quot;, Pattern.LITERAL), Pattern.compile(&quot;EHK&quot;, Pattern.LITERAL), Pattern.compile(&quot;FIL&quot;, Pattern.LITERAL), Pattern.compile(&quot;GJM&quot;, Pattern.LITERAL), Pattern.compile(&quot;EIM&quot;, Pattern.LITERAL), Pattern.compile(&quot;KIG&quot;, Pattern.LITERAL)},
// Local board 5
{Pattern.compile(&quot;NPQ&quot;, Pattern.LITERAL), Pattern.compile(&quot;RST&quot;, Pattern.LITERAL), Pattern.compile(&quot;UVW&quot;, Pattern.LITERAL), Pattern.compile(&quot;NRU&quot;, Pattern.LITERAL), Pattern.compile(&quot;PSV&quot;, Pattern.LITERAL), Pattern.compile(&quot;QTW&quot;, Pattern.LITERAL), Pattern.compile(&quot;NSW&quot;, Pattern.LITERAL), Pattern.compile(&quot;USQ&quot;, Pattern.LITERAL)},
// Local board 6
{Pattern.compile(&quot;YZ[&quot;, Pattern.LITERAL), Pattern.compile(&quot;\\]^&quot;, Pattern.LITERAL), Pattern.compile(&quot;`ab&quot;, Pattern.LITERAL), Pattern.compile(&quot;Y\\`&quot;, Pattern.LITERAL), Pattern.compile(&quot;Z]a&quot;, Pattern.LITERAL), Pattern.compile(&quot;[^b&quot;, Pattern.LITERAL), Pattern.compile(&quot;Y]b&quot;, Pattern.LITERAL), Pattern.compile(&quot;`][&quot;, Pattern.LITERAL)},
// Local board 7
{Pattern.compile(&quot;cde&quot;, Pattern.LITERAL), Pattern.compile(&quot;fgh&quot;, Pattern.LITERAL), Pattern.compile(&quot;ijk&quot;, Pattern.LITERAL), Pattern.compile(&quot;cfi&quot;, Pattern.LITERAL), Pattern.compile(&quot;dgj&quot;, Pattern.LITERAL), Pattern.compile(&quot;ehk&quot;, Pattern.LITERAL), Pattern.compile(&quot;cgk&quot;, Pattern.LITERAL), Pattern.compile(&quot;ige&quot;, Pattern.LITERAL)},
// Local board 8
{Pattern.compile(&quot;lmn&quot;, Pattern.LITERAL), Pattern.compile(&quot;opq&quot;, Pattern.LITERAL), Pattern.compile(&quot;rst&quot;, Pattern.LITERAL), Pattern.compile(&quot;lor&quot;, Pattern.LITERAL), Pattern.compile(&quot;mps&quot;, Pattern.LITERAL), Pattern.compile(&quot;nqt&quot;, Pattern.LITERAL), Pattern.compile(&quot;lpt&quot;, Pattern.LITERAL), Pattern.compile(&quot;rpn&quot;, Pattern.LITERAL)},
// Local board 9
{Pattern.compile(&quot;uvw&quot;, Pattern.LITERAL), Pattern.compile(&quot;xyz&quot;, Pattern.LITERAL), Pattern.compile(&quot;{}~&quot;, Pattern.LITERAL), Pattern.compile(&quot;ux{&quot;, Pattern.LITERAL), Pattern.compile(&quot;vy}&quot;, Pattern.LITERAL), Pattern.compile(&quot;wz~&quot;, Pattern.LITERAL), Pattern.compile(&quot;uy~&quot;, Pattern.LITERAL), Pattern.compile(&quot;{yw&quot;, Pattern.LITERAL)},
// Global board
{Pattern.compile(&quot;123&quot;, Pattern.LITERAL), Pattern.compile(&quot;456&quot;, Pattern.LITERAL), Pattern.compile(&quot;789&quot;, Pattern.LITERAL), Pattern.compile(&quot;147&quot;, Pattern.LITERAL), Pattern.compile(&quot;258&quot;, Pattern.LITERAL), Pattern.compile(&quot;369&quot;, Pattern.LITERAL), Pattern.compile(&quot;159&quot;, Pattern.LITERAL), Pattern.compile(&quot;357&quot;, Pattern.LITERAL)}
};
// WIN DETECTION METHOD
// Flag variables
static boolean flag0, flag1, flag2, flag3, flag4, flag5, flag6, flag7, flag8 = true;
static void findWinPatterns(String score) {
for (int i = 0; i &lt; winPatterns.length; i++) {
for (Pattern pattern : winPatterns[i]) {
Matcher matcher = pattern.matcher(score);
boolean matchFound = matcher.find();
if (matchFound) {
System.out.println(&quot;3 in a row!&quot; + &quot; i = &quot; + i);
// ... again, all the same stuff as before ...
}
}
}
}
// MAIN METHOD HERE

This worked... exactly the same as my initial code. The order here still matters, and I really don't know why. I'm really close to just throwing in the towel and using org.apache.commons.lang3.StringUtils.containsAny().

Just addressing something quick: the switch block is currently a comment because it is easier to test this thing's functionality with a System.out.println for now. It should work already, but it is admittedly clunky; 9 boolean flags... I'll take suggestions there, too, if you're willing.

But anyway, I'd greatly appreciate some help with this conundrum. Thanks!

答案1

得分: 1

你的问题的核心似乎是:
> 给定一个字符字符串,我如何检查所有这些字符是否存在于另一个字符串中?
有几种方法可以实现这个:
*正则表达式:*
检测一个字符串中是否包含全部`"abc"`的正则表达式是`"^(?=.*a)(?=.*b)(?=.*c).*"`。你可以硬编码这个正则表达式,或者像这样从字符串构建它:

String search = "abc";
String target = "bxaxc";
String regex = "^" + search.replaceAll(".", "(?=.$0)") + ".";
if (target.matches(regex)) // true


*使用集合的contains方法:*

String search = "abc";
Set searches = search.chars().boxed().collect(toSet());

String target = "bxaxc";
Set targets = target.chars().boxed().collect(toSet());
if (searches.stream().allMatch(target::contains)) // true


我预计第二个选项的性能会稍微更快,但使用第一个选项(正则表达式)时,进行比较的代码更易于理解。
你可以选择其中一个选项,或者使用你自己的方法来应用到你的项目中。
英文:

Your heart of your question seems to be:

> Given a String of characters, how can I check that all those characters exist in another String

There are a couple of ways to do this:

Regex:

The regex for detecting all of &quot;abc&quot; in a string is &quot;^(?=.*a)(?=.*b)(?=.*c).*&quot;. You could either hardcode the regex, or build it from the string like this:

String search = &quot;abc&quot;;
String target = &quot;bxaxc&quot;
String regex = &quot;^&quot; + search.replaceAll(&quot;.&quot;, &quot;(?=.*$0)&quot;) + &quot;.*&quot;;
if (target.matches(regex)) // true

Use Set contains:

String search = &quot;abc&quot;;
Set&lt;Integer&gt; searches = search.chars().boxed().collect(toSet());
String target = &quot;bxaxc&quot;;
Set&lt;Integer&gt; targets = target.chars().boxed().collect(toSet());
if (searches.stream().allMatch(target::contains)) // true

I would expect the performance of the second option to be somewhat faster, but the code where the comparison is made is easier to understand with the first (regex) option.

I leave it to you to weave one of these options, or your own, into your project.

huangapple
  • 本文由 发表于 2020年8月6日 06:18:42
  • 转载请务必保留本文链接:https://go.coder-hub.com/63274304.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定