从 HashMap 中删除元素时出现异常 java.util.ConcurrentModificationException
Exception when removing element from HashMap java.util.ConcurrentModificationException
我正在尝试编写一个逻辑来找到最快的路线,输入格式为“1-2-30#2-3-25#3-4-30#...”,意思是从站 1 到 2 需要 30 分钟。在此代码中,当我递归调用 searchMapKey() 函数时,如果密钥不存在,那么我将执行 "Exception in thread "main" java.util.ConcurrentModificationException"
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.HashMap;
import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;
import java.util.StringTokenizer;
public class QuickestRoute {
static int totalWeight = 0;
public static String outpit;
public static void main(String[] args) {
// TODO Auto-generated method stub
String input1[] = { "1-2-30#2-3-25#3-4-30#4-5-45#5-6-30#6-7-15#7-8-60#8-9-40",
"10-11-45#11-4-60#4-12-60#12-13-45#13-14-30#14-15-35",
"1-3-40#3-4-25#4-16-30#16-17-15#17-18-20#18-19-30#19-20-25", "21-12-30#12-17-180#17-22-45" }; };
String input2 = "12#18";
String[] output = quickestMetroRoute(input1, input2);
/*
* for(int i=0;i<output.length;i++) System.out.println(output[i]);
*/
}
public static String[] quickestMetroRoute(String[] input1, String input2) {
// Write code here
Map<String, Integer> input = new HashMap<String, Integer>();
for (int i = 0; i < input1.length; i++) {
StringTokenizer str = new StringTokenizer(input1[i], "#");
while (str.hasMoreTokens()) {
String[] parts = str.nextToken().split("-");
String node = parts[0] + "-" + parts[1];
int weight = Integer.parseInt(parts[2]);
input.put(node, weight);
}
}
Map<String, Integer> sortedMap = sortByValue(input);
System.out.println(Collections.singletonList(sortedMap));
String[] parts = input2.split("#");
String source = parts[0];
String destination = parts[1];
searchMapKey(source, destination, sortedMap);
/*
* for (Map.Entry<String, Integer> entry : input.entrySet()) { String
* key = entry.getKey(); Integer value = entry.getValue(); // ... }
*/
System.out.println("outpit: " + outpit);
System.out.println("totalWeight: " + totalWeight);
return input1;
}
private static void searchMapKey(String source, String destination, Map<String, Integer> input) {
// TODO Auto-generated method stub
for (Iterator<Entry<String, Integer>> it = input.entrySet().iterator(); it.hasNext();) {
Entry<String, Integer> entry = it.next();
String key = entry.getKey();
Integer value = entry.getValue();
// ...
String[] nodeParts = key.split("-");
String nodeFirst = nodeParts[0];
String nodeSecond = nodeParts[1];
if (nodeFirst.equals(source)) {
totalWeight += value;
outpit += key;
if (destination.equals(nodeSecond)) {
totalWeight += value;
outpit += key;
return;
} else {
input.remove(key);
searchMapKey(nodeSecond, destination, input);
}
}
if (nodeSecond.equals(source)) {
totalWeight += value;
outpit += key;
if (destination.equals(nodeFirst)) {
totalWeight += value;
outpit += key;
return;
} else {
input.remove(key);
searchMapKey(nodeFirst, destination, input);
}
}
}
}
private static Map<String, Integer> sortByValue(Map<String, Integer> unsortMap) {
// 1. Convert Map to List of Map
List<Map.Entry<String, Integer>> list =
new LinkedList<Map.Entry<String, Integer>>(unsortMap.entrySet());
// 2. Sort list with Collections.sort(), provide a custom Comparator
// Try switch the o1 o2 position for a different order
Collections.sort(list, new Comparator<Map.Entry<String, Integer>>() {
public int compare(Map.Entry<String, Integer> o1,
Map.Entry<String, Integer> o2) {
return (o1.getValue()).compareTo(o2.getValue());
}
});
// 3. Loop the sorted list and put it into a new insertion order Map LinkedHashMap
Map<String, Integer> sortedMap = new LinkedHashMap<String, Integer>();
for (Map.Entry<String, Integer> entry : list) {
sortedMap.put(entry.getKey(), entry.getValue());
}
/*
//classic iterator example
for (Iterator<Map.Entry<String, Integer>> it = list.iterator(); it.hasNext(); ) {
Map.Entry<String, Integer> entry = it.next();
sortedMap.put(entry.getKey(), entry.getValue());
}*/
return sortedMap;
}
}
在 Map
上有一个活动的 Iterator
时修改它会使迭代器无效。根据地图的具体内容,您可能会得到 ConcurrentModificationException
,如您所见。
解决此问题的一种方法是通过迭代器进行修改(即调用 it.remove()
),而不是直接在地图上进行修改(input.remove(key)
)。
试试这个代码我做了 2 次修改
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.HashMap;
import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;
import java.util.StringTokenizer;
public class QuickestRoute {
static int totalWeight = 0;
public static String outpit;
public static void main(String[] args) {
// TODO Auto-generated method stub
String input1[] = { "1-2-30#2-3-25#3-4-30#4-5-45#5-6-30#6-7-15#7-8-60#8-9-40",
"10-11-45#11-4-60#4-12-60#12-13-45#13-14-30#14-15-35",
"1-3-40#3-4-25#4-16-30#16-17-15#17-18-20#18-19-30#19-20-25", "21-12-30#12-17-180#17-22-45" };
String input2 = "12#18";
String[] output = quickestMetroRoute(input1, input2);
/*
* for(int i=0;i<output.length;i++) System.out.println(output[i]);
*/
}
public static String[] quickestMetroRoute(String[] input1, String input2) {
// Write code here
Map<String, Integer> input = new HashMap<String, Integer>();
for (int i = 0; i < input1.length; i++) {
StringTokenizer str = new StringTokenizer(input1[i], "#");
while (str.hasMoreTokens()) {
String[] parts = str.nextToken().split("-");
String node = parts[0] + "-" + parts[1];
int weight = Integer.parseInt(parts[2]);
input.put(node, weight);
}
}
Map<String, Integer> sortedMap = sortByValue(input);
System.out.println(Collections.singletonList(sortedMap));
String[] parts = input2.split("#");
String source = parts[0];
String destination = parts[1];
searchMapKey(source, destination, sortedMap);
/*
* for (Map.Entry<String, Integer> entry : input.entrySet()) { String
* key = entry.getKey(); Integer value = entry.getValue(); // ... }
*/
System.out.println("outpit: " + outpit);
System.out.println("totalWeight: " + totalWeight);
return input1;
}
private static void searchMapKey(String source, String destination, Map<String, Integer> input) {
// TODO Auto-generated method stub
ArrayList<Map<String, Integer>> removeList = new ArrayList<Map<String, Integer>>();
for (Iterator<Entry<String, Integer>> it = input.entrySet().iterator(); it.hasNext();) {
Entry<String, Integer> entry = it.next();
String key = entry.getKey();
Integer value = entry.getValue();
// ...
String[] nodeParts = key.split("-");
String nodeFirst = nodeParts[0];
String nodeSecond = nodeParts[1];
if (nodeFirst.equals(source)) {
totalWeight += value;
outpit += key;
if (destination.equals(nodeSecond)) {
totalWeight += value;
outpit += key;
return;
} else {
it.remove();
// input.remove(key);
Map<String, Integer> next = new HashMap<String, Integer>();
next.putAll(input);
searchMapKey(nodeSecond, destination, next);
}
}
if (nodeSecond.equals(source)) {
totalWeight += value;
outpit += key;
if (destination.equals(nodeFirst)) {
totalWeight += value;
outpit += key;
return;
} else {
it.remove();
// input.remove(key);
Map<String, Integer> next = new HashMap<String, Integer>();
next.putAll(input);
searchMapKey(nodeFirst, destination, next);
}
}
}
}
private static Map<String, Integer> sortByValue(Map<String, Integer> unsortMap) {
// 1. Convert Map to List of Map
List<Map.Entry<String, Integer>> list = new LinkedList<Map.Entry<String, Integer>>(unsortMap.entrySet());
// 2. Sort list with Collections.sort(), provide a custom Comparator
// Try switch the o1 o2 position for a different order
Collections.sort(list, new Comparator<Map.Entry<String, Integer>>() {
public int compare(Map.Entry<String, Integer> o1, Map.Entry<String, Integer> o2) {
return (o1.getValue()).compareTo(o2.getValue());
}
});
// 3. Loop the sorted list and put it into a new insertion order Map
// LinkedHashMap
Map<String, Integer> sortedMap = new LinkedHashMap<String, Integer>();
for (Map.Entry<String, Integer> entry : list) {
sortedMap.put(entry.getKey(), entry.getValue());
}
/*
* //classic iterator example for (Iterator<Map.Entry<String, Integer>>
* it = list.iterator(); it.hasNext(); ) { Map.Entry<String, Integer>
* entry = it.next(); sortedMap.put(entry.getKey(), entry.getValue()); }
*/
return sortedMap;
}
}
你的输出
[{6-7=15, 16-17=15, 17-18=20, 19-20=25, 2-3=25, 3-4=25, 18-19=30, 13-14=30, 4-16=30, 1-2=30, 21-12=30, 5-6=30, 14-15=35, 8-9=40, 1-3=40, 10-11=45, 12-13=45, 17-22=45, 4-5=45, 7-8=60, 4-12=60, 11-4=60, 12-17=180}]
outpit: null21-1212-1313-1414-154-124-1616-1717-1817-1811-410-113-41-31-22-32-31-24-55-66-77-88-912-1717-1817-18
totalWeight: 975
你正在使用递归函数并在迭代器中删除元素,然后在另一个调用中再次使用它们,我所做的是每次你删除一个元素,复制它,然后将它转发给进行递归调用
如果没有清除,请随时询问
我正在尝试编写一个逻辑来找到最快的路线,输入格式为“1-2-30#2-3-25#3-4-30#...”,意思是从站 1 到 2 需要 30 分钟。在此代码中,当我递归调用 searchMapKey() 函数时,如果密钥不存在,那么我将执行 "Exception in thread "main" java.util.ConcurrentModificationException"
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.HashMap;
import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;
import java.util.StringTokenizer;
public class QuickestRoute {
static int totalWeight = 0;
public static String outpit;
public static void main(String[] args) {
// TODO Auto-generated method stub
String input1[] = { "1-2-30#2-3-25#3-4-30#4-5-45#5-6-30#6-7-15#7-8-60#8-9-40",
"10-11-45#11-4-60#4-12-60#12-13-45#13-14-30#14-15-35",
"1-3-40#3-4-25#4-16-30#16-17-15#17-18-20#18-19-30#19-20-25", "21-12-30#12-17-180#17-22-45" }; };
String input2 = "12#18";
String[] output = quickestMetroRoute(input1, input2);
/*
* for(int i=0;i<output.length;i++) System.out.println(output[i]);
*/
}
public static String[] quickestMetroRoute(String[] input1, String input2) {
// Write code here
Map<String, Integer> input = new HashMap<String, Integer>();
for (int i = 0; i < input1.length; i++) {
StringTokenizer str = new StringTokenizer(input1[i], "#");
while (str.hasMoreTokens()) {
String[] parts = str.nextToken().split("-");
String node = parts[0] + "-" + parts[1];
int weight = Integer.parseInt(parts[2]);
input.put(node, weight);
}
}
Map<String, Integer> sortedMap = sortByValue(input);
System.out.println(Collections.singletonList(sortedMap));
String[] parts = input2.split("#");
String source = parts[0];
String destination = parts[1];
searchMapKey(source, destination, sortedMap);
/*
* for (Map.Entry<String, Integer> entry : input.entrySet()) { String
* key = entry.getKey(); Integer value = entry.getValue(); // ... }
*/
System.out.println("outpit: " + outpit);
System.out.println("totalWeight: " + totalWeight);
return input1;
}
private static void searchMapKey(String source, String destination, Map<String, Integer> input) {
// TODO Auto-generated method stub
for (Iterator<Entry<String, Integer>> it = input.entrySet().iterator(); it.hasNext();) {
Entry<String, Integer> entry = it.next();
String key = entry.getKey();
Integer value = entry.getValue();
// ...
String[] nodeParts = key.split("-");
String nodeFirst = nodeParts[0];
String nodeSecond = nodeParts[1];
if (nodeFirst.equals(source)) {
totalWeight += value;
outpit += key;
if (destination.equals(nodeSecond)) {
totalWeight += value;
outpit += key;
return;
} else {
input.remove(key);
searchMapKey(nodeSecond, destination, input);
}
}
if (nodeSecond.equals(source)) {
totalWeight += value;
outpit += key;
if (destination.equals(nodeFirst)) {
totalWeight += value;
outpit += key;
return;
} else {
input.remove(key);
searchMapKey(nodeFirst, destination, input);
}
}
}
}
private static Map<String, Integer> sortByValue(Map<String, Integer> unsortMap) {
// 1. Convert Map to List of Map
List<Map.Entry<String, Integer>> list =
new LinkedList<Map.Entry<String, Integer>>(unsortMap.entrySet());
// 2. Sort list with Collections.sort(), provide a custom Comparator
// Try switch the o1 o2 position for a different order
Collections.sort(list, new Comparator<Map.Entry<String, Integer>>() {
public int compare(Map.Entry<String, Integer> o1,
Map.Entry<String, Integer> o2) {
return (o1.getValue()).compareTo(o2.getValue());
}
});
// 3. Loop the sorted list and put it into a new insertion order Map LinkedHashMap
Map<String, Integer> sortedMap = new LinkedHashMap<String, Integer>();
for (Map.Entry<String, Integer> entry : list) {
sortedMap.put(entry.getKey(), entry.getValue());
}
/*
//classic iterator example
for (Iterator<Map.Entry<String, Integer>> it = list.iterator(); it.hasNext(); ) {
Map.Entry<String, Integer> entry = it.next();
sortedMap.put(entry.getKey(), entry.getValue());
}*/
return sortedMap;
}
}
在 Map
上有一个活动的 Iterator
时修改它会使迭代器无效。根据地图的具体内容,您可能会得到 ConcurrentModificationException
,如您所见。
解决此问题的一种方法是通过迭代器进行修改(即调用 it.remove()
),而不是直接在地图上进行修改(input.remove(key)
)。
试试这个代码我做了 2 次修改
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.HashMap;
import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;
import java.util.StringTokenizer;
public class QuickestRoute {
static int totalWeight = 0;
public static String outpit;
public static void main(String[] args) {
// TODO Auto-generated method stub
String input1[] = { "1-2-30#2-3-25#3-4-30#4-5-45#5-6-30#6-7-15#7-8-60#8-9-40",
"10-11-45#11-4-60#4-12-60#12-13-45#13-14-30#14-15-35",
"1-3-40#3-4-25#4-16-30#16-17-15#17-18-20#18-19-30#19-20-25", "21-12-30#12-17-180#17-22-45" };
String input2 = "12#18";
String[] output = quickestMetroRoute(input1, input2);
/*
* for(int i=0;i<output.length;i++) System.out.println(output[i]);
*/
}
public static String[] quickestMetroRoute(String[] input1, String input2) {
// Write code here
Map<String, Integer> input = new HashMap<String, Integer>();
for (int i = 0; i < input1.length; i++) {
StringTokenizer str = new StringTokenizer(input1[i], "#");
while (str.hasMoreTokens()) {
String[] parts = str.nextToken().split("-");
String node = parts[0] + "-" + parts[1];
int weight = Integer.parseInt(parts[2]);
input.put(node, weight);
}
}
Map<String, Integer> sortedMap = sortByValue(input);
System.out.println(Collections.singletonList(sortedMap));
String[] parts = input2.split("#");
String source = parts[0];
String destination = parts[1];
searchMapKey(source, destination, sortedMap);
/*
* for (Map.Entry<String, Integer> entry : input.entrySet()) { String
* key = entry.getKey(); Integer value = entry.getValue(); // ... }
*/
System.out.println("outpit: " + outpit);
System.out.println("totalWeight: " + totalWeight);
return input1;
}
private static void searchMapKey(String source, String destination, Map<String, Integer> input) {
// TODO Auto-generated method stub
ArrayList<Map<String, Integer>> removeList = new ArrayList<Map<String, Integer>>();
for (Iterator<Entry<String, Integer>> it = input.entrySet().iterator(); it.hasNext();) {
Entry<String, Integer> entry = it.next();
String key = entry.getKey();
Integer value = entry.getValue();
// ...
String[] nodeParts = key.split("-");
String nodeFirst = nodeParts[0];
String nodeSecond = nodeParts[1];
if (nodeFirst.equals(source)) {
totalWeight += value;
outpit += key;
if (destination.equals(nodeSecond)) {
totalWeight += value;
outpit += key;
return;
} else {
it.remove();
// input.remove(key);
Map<String, Integer> next = new HashMap<String, Integer>();
next.putAll(input);
searchMapKey(nodeSecond, destination, next);
}
}
if (nodeSecond.equals(source)) {
totalWeight += value;
outpit += key;
if (destination.equals(nodeFirst)) {
totalWeight += value;
outpit += key;
return;
} else {
it.remove();
// input.remove(key);
Map<String, Integer> next = new HashMap<String, Integer>();
next.putAll(input);
searchMapKey(nodeFirst, destination, next);
}
}
}
}
private static Map<String, Integer> sortByValue(Map<String, Integer> unsortMap) {
// 1. Convert Map to List of Map
List<Map.Entry<String, Integer>> list = new LinkedList<Map.Entry<String, Integer>>(unsortMap.entrySet());
// 2. Sort list with Collections.sort(), provide a custom Comparator
// Try switch the o1 o2 position for a different order
Collections.sort(list, new Comparator<Map.Entry<String, Integer>>() {
public int compare(Map.Entry<String, Integer> o1, Map.Entry<String, Integer> o2) {
return (o1.getValue()).compareTo(o2.getValue());
}
});
// 3. Loop the sorted list and put it into a new insertion order Map
// LinkedHashMap
Map<String, Integer> sortedMap = new LinkedHashMap<String, Integer>();
for (Map.Entry<String, Integer> entry : list) {
sortedMap.put(entry.getKey(), entry.getValue());
}
/*
* //classic iterator example for (Iterator<Map.Entry<String, Integer>>
* it = list.iterator(); it.hasNext(); ) { Map.Entry<String, Integer>
* entry = it.next(); sortedMap.put(entry.getKey(), entry.getValue()); }
*/
return sortedMap;
}
}
你的输出
[{6-7=15, 16-17=15, 17-18=20, 19-20=25, 2-3=25, 3-4=25, 18-19=30, 13-14=30, 4-16=30, 1-2=30, 21-12=30, 5-6=30, 14-15=35, 8-9=40, 1-3=40, 10-11=45, 12-13=45, 17-22=45, 4-5=45, 7-8=60, 4-12=60, 11-4=60, 12-17=180}]
outpit: null21-1212-1313-1414-154-124-1616-1717-1817-1811-410-113-41-31-22-32-31-24-55-66-77-88-912-1717-1817-18
totalWeight: 975
你正在使用递归函数并在迭代器中删除元素,然后在另一个调用中再次使用它们,我所做的是每次你删除一个元素,复制它,然后将它转发给进行递归调用 如果没有清除,请随时询问