- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在编写一个方法,该方法应该采用 "s1:{1,2,3,4}"
格式的输入 String
并将其放入 Set
中。我自己开发的集合类如下:
public class Set<E> implements Iterable<E> {
private static final int DEFAULT_CAPACITY = 20;
private String name;
private E[] theData;
private int size = 0;
private int capacity = 0;
public Set(){
capacity = DEFAULT_CAPACITY;
theData = (E[]) new Object[capacity];
}//end constructor
public Set(String name){
capacity = DEFAULT_CAPACITY;
theData = (E[]) new Object[capacity];
this.name = name;
}//end constructor
public String getName(){
return name;
}//end getName
public void setName(String name){
this.name = name;
}//end setName
//adds object to set
public void add(Object E) {
if (size == capacity) {
reallocate();
}//end if
theData[size] = (E) E;
size++;
for (int j = 0; j<size; j++) {
for (int k = 0; k < size; k++) {
if ((int)theData[j] < (int)theData[k]) {
E temp = theData[j];
theData[j] = theData[k];
theData[k] = temp;
}//end if
}//end nested for loop
}//end for loop
int counter = 0;
for (int i = 0; i < size; i++) {
if (E == theData[i]) {
counter++;
if (counter >= 2) {
remove((Object)E);
}//end nested if
}//end if
}//end for loop
}//end add method
public E get(int i) {
if (i < 0 || i >= size) {
throw new ArrayIndexOutOfBoundsException(i);
} else {
return theData[i];
}//end else
}//end get method
public E remove(int i) {
if (i < 0 || i >= size) {
throw new ArrayIndexOutOfBoundsException(i);
}//end if
E returnValue = theData[i];
for (int j = i + 1; j < size; j++) {
theData[j - 1] = theData[j];
}//end for loop
size--;
return returnValue;
}//end remove method
public void remove(Object E) {
for (int i = 0; i < size; i++) {
if (E == theData[i]) {
for (int j = i + 1; j < size; j++){
theData[j - 1] = theData[j];
}//end nested for loop
size--;
}//end if
}//end for loop
}//end remove method
//fix!
public int find(Object E) {
int first, last, middle;
first = 0;
last = size - 1;
middle = (first+last) / 2;
while(first <= last ) {
if ((int)theData[middle] > (int)E ) {
last = middle - 1;
} else if ((int)theData[middle] < (int)E ) {
first = middle + 1;
} else {
return middle;
}//end else
}//end while
if (first > last) {
return -1;
}//end if
return -1;
}//end find method
public Set<E> union(Set<E> s) {
Set<E> returnSet = new Set<E>();
for (int i = 0; i < this.size; i++) {
returnSet.add(this.theData[i]);
}//end for loop
for (int i = 0; i < s.size; i++) {
returnSet.add(s.theData[i]);
}//end for loop
return returnSet;
}//end union method
public Set<E> intersect(Set<E> s) {
Set<E> returnSet = new Set<E>();
for (int i = 0; i < this.size; i++) {
for (int j = 0; j < s.size; j++) {
if (this.theData[i] == s.theData[j]){
returnSet.add(theData[i]);
}//end if
}//end nested for loop
}//end for loop
return returnSet;
}//end intersect method
public Set<E> subtract(Set<E> s) {
Set<E> returnSet = new Set<E>();
for (int i = 0; i < this.size; i++) {
for (int j = 0; j < s.size; j++) {
if (this.theData[i] == s.theData[j]) {
this.remove((Object)this.theData[i]);
s.remove((Object)s.theData[j]);
}//end if
}//end nested for loop
}//end for loop
for (int i = 0; i < this.size; i++) {
returnSet.add(this.theData[i]);
}//end for loop
for (int i = 0; i < s.size; i++) {
returnSet.add(s.theData[i]);
}//end for loop
return returnSet;
}//end subtract method
public boolean equals(Set<E> s) {
boolean result = false;
for (int i = 0; i < this.size; i++) {
if (this.theData[i] == s.theData[i]) {
result = true;
}//end if
if (this.theData[i] != s.theData[i]) {
result = false;
break;
}//end if
}//end for loop
return result;
}//end equals method
private void reallocate() {
capacity = 2*capacity;
theData = Arrays.copyOf(theData, capacity);
}//end reallocate method
public String toString() {
StringBuilder set = new StringBuilder();
set.append("{");
for (int i = 0; i < size; i++) {
set.append(theData[i]);
if (i != size-1){
set.append(",");
}//end if
}//end for loop
set.append("}");
return set.toString();
}//end toString()
public SetIterator<E> iterator() {
SetIterator<E> it = new SetIterator<E>() {
private int currentIndex = 0;
public boolean hasNext() {
if (currentIndex < size && theData[currentIndex] != null){
currentIndex++;
return true;
} else{
return false;
}//end else
}//end hasNext()
public E next() {
if (!hasNext()) {
throw new NoSuchElementException();
}//end if
return theData[currentIndex++];
}//end next()
public boolean hasPrevious() {
if (currentIndex <= size && currentIndex > 0) {
currentIndex--;
return true;
} else {
return false;
}//end else
}//end hasPrevious()
public E previous() {
if (!hasPrevious()) {
throw new NoSuchElementException();
}//end if
return theData[currentIndex--];
}//end previous()
public void add(E item) {
theData[currentIndex-1] = item;
}//end add()
public void remove() {
for (int i = 0; i < size; i++) {
if (theData[currentIndex] == theData[i]) {
for (int j = i + 1; j < size; j++) {
theData[j - 1] = theData[j];
}//end nested for loop
size--;
}//end if
}//end for loop
}//end remove()
};//end new SetIterator()
return it;
}//end iterator method
}//end Set class
方法应该是
"s1:[1 2,3,4}"
(此示例是缺少逗号和大括号),则会抛出异常。 “s1: {1, 2, 3, 4 }”
。到目前为止,我所掌握的方法是:
public Set<Integer> parse(String input){
String s[] = input.split(":");
String name = s[0];
Set<Integer> returnSet = new Set<Integer>(name);
return returnSet;
}
我不确定如何正确检索字符串中集合中的元素并将它们放入 Set 对象中。我知道一旦我自己得到它们,我就可以parseInt
,但我在隔离每个元素时遇到了困难。集合可以包含的元素数量没有限制;这意味着我的代码应该适用于任意数量的元素。
我也考虑过正则表达式,但我觉得好像有一种更有效的方法来做到这一点。
任何帮助将不胜感激!
最佳答案
最简单的方法是使用 Set
的构造函数
http://docs.oracle.com/javase/7/docs/api/java/util/HashSet.html
以及Arrays.asList()
http://docs.oracle.com/javase/7/docs/api/java/util/Arrays.html
转换您的String[]
进入Set<String>
:
Set<String> mySet = new HashSet<String>(Arrays.asList(s));
关于java - 如何解析一个字符串的集合?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26660257/
如何使用 SPListCollection.Add(String, String, String, String, Int32, String, SPListTemplate.QuickLaunchO
我刚刚开始使用 C++ 并且对 C# 有一些经验,所以我有一些一般的编程经验。然而,似乎我马上就被击落了。我试过在谷歌上寻找,以免浪费任何人的时间,但没有结果。 int main(int argc,
这个问题已经有答案了: In Java 8 how do I transform a Map to another Map using a lambda? (8 个回答) Convert a Map>
我正在使用 node + typescript 和集成的 swagger 进行 API 调用。我 Swagger 提出以下要求 http://localhost:3033/employees/sear
我是 C++ 容器模板的新手。我收集了一些记录。每条记录都有一个唯一的名称,以及一个字段/值对列表。将按名称访问记录。字段/值对的顺序很重要。因此我设计如下: typedef string
我需要这两种方法,但j2me没有,我找到了一个replaceall();但这是 replaceall(string,string,string); 第二个方法是SringBuffer但在j2me中它没
If string is an alias of String in the .net framework为什么会发生这种情况,我应该如何解释它: type JustAString = string
我有两个列表(或字符串):一个大,另一个小。 我想检查较大的(A)是否包含小的(B)。 我的期望如下: 案例 1. B 是 A 的子集 A = [1,2,3] B = [1,2] contains(A
我有一个似乎无法解决的小问题。 这里...我有一个像这样创建的输入... var input = $(''); 如果我这样做......一切都很好 $(this).append(input); 如果我
我有以下代码片段 string[] lines = objects.Split(new string[] { "\r\n", "\n" }, StringSplitOptions.No
这可能真的很简单,但我已经坚持了一段时间了。 我正在尝试输出一个字符串,然后输出一个带有两位小数的 double ,后跟另一个字符串,这是我的代码。 System.out.printf("成本:%.2
以下是 Cloud Firestore 列表查询中的示例之一 citiesRef.where("state", ">=", "CA").where("state", "= 字符串,我们在Stack O
我正在尝试检查一个字符串是否包含在另一个字符串中。后面的代码非常简单。我怎样才能在 jquery 中做到这一点? function deleteRow(locName, locID) { if
这个问题在这里已经有了答案: How to implement big int in C++ (14 个答案) 关闭 9 年前。 我有 2 个字符串,都只包含数字。这些数字大于 uint64_t 的
我有一个带有自定义转换器的 Dozer 映射: com.xyz.Customer com.xyz.CustomerDAO customerName
这个问题在这里已经有了答案: How do I compare strings in Java? (23 个回答) 关闭 6 年前。 我想了解字符串池的工作原理以及一个字符串等于另一个字符串的规则是
我已阅读 this问题和其他一些问题。但它们与我的问题有些无关 对于 UILabel 如果你不指定 ? 或 ! 你会得到这样的错误: @IBOutlet property has non-option
这两种方法中哪一种在理论上更快,为什么? (指向字符串的指针必须是常量。) destination[count] 和 *destination++ 之间的确切区别是什么? destination[co
This question already has answers here: Closed 11 years ago. Possible Duplicates: Is String.Format a
我有一个Stream一个文件的,现在我想将相同的单词组合成 Map这很重要,这个词在 Stream 中出现的频率. 我知道我必须使用 collect(Collectors.groupingBy(..)
我是一名优秀的程序员,十分优秀!