From 785e911ddfdd7039e6c57b8096b11d84e20fa213 Mon Sep 17 00:00:00 2001 From: TimerLink Date: Thu, 2 Jun 2016 23:05:23 +0800 Subject: [PATCH 1/4] feat:Palindrome String --- .idea/vcs.xml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .idea/vcs.xml diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file From aca8b62f5aee97647dc3bcd08f84103c31604a3c Mon Sep 17 00:00:00 2001 From: TimerLink Date: Thu, 2 Jun 2016 23:07:28 +0800 Subject: [PATCH 2/4] feat:Palindrome String --- src/com/timerling/Test.java | 58 +++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 src/com/timerling/Test.java diff --git a/src/com/timerling/Test.java b/src/com/timerling/Test.java new file mode 100644 index 0000000..ec920c1 --- /dev/null +++ b/src/com/timerling/Test.java @@ -0,0 +1,58 @@ +package com.timerling; + +import java.util.ArrayList; +import java.util.List; +import java.util.Scanner; + +public class Test { + private int TestStr(String string){ + int num = 0; + List stringList = new ArrayList<>(); + List stringList1 = new ArrayList<>(); + List stringList2 = new ArrayList<>(); + int ia = 0; + int ib = 0; + for (int i=0;i Date: Thu, 2 Jun 2016 23:10:55 +0800 Subject: [PATCH 3/4] feat:Palindrome String --- .idea/compiler.xml | 22 ++++++++++++++ .idea/copyright/profiles_settings.xml | 3 ++ .idea/encodings.xml | 6 ++++ .idea/misc.xml | 42 +++++++++++++++++++++++++++ .idea/modules.xml | 8 +++++ testString.iml | 11 +++++++ 6 files changed, 92 insertions(+) create mode 100644 .idea/compiler.xml create mode 100644 .idea/copyright/profiles_settings.xml create mode 100644 .idea/encodings.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 testString.iml diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..96cc43e --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/copyright/profiles_settings.xml b/.idea/copyright/profiles_settings.xml new file mode 100644 index 0000000..e7bedf3 --- /dev/null +++ b/.idea/copyright/profiles_settings.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000..97626ba --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..8d8dc8d --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + 1.8 + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..1d7d7b9 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/testString.iml b/testString.iml new file mode 100644 index 0000000..c90834f --- /dev/null +++ b/testString.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file From be5b49c32a5179157b9dd2af9bf9efb62cb3e581 Mon Sep 17 00:00:00 2001 From: TimerLink Date: Thu, 2 Jun 2016 23:14:18 +0800 Subject: [PATCH 4/4] feat:Palindrome String --- .gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bfa6a22 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +# Created by .ignore support plugin (hsz.mobi)