- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我要初始化所谓的LZWDictionary
,以从提供的字符串中的唯一字符集中获取一组初始条目。
当在提供的输入字符串中遇到唯一字符时,它们会被添加到映射中,索引值不断增加(从索引 0 开始)。同时,字符被添加到列表中。因此,与映射中每个字典条目关联的索引与其在列表中的索引(位置)相关。
这是我尝试的代码,其中包含对我的思考过程的评论。
// Initialising map
map = new LinkedHashMap<>();
// Initialising list
list = new ArrayList<>();
// Declaring String variable for holding character
String str;
// Declaring index variable for holding Value
int index;
// If block for checking empty string.
if (characters.length() == 0)
// Throwing IllegealArgumentException if String is empty.
throw new IllegalArgumentException("Input should not be empty!!!");
else {
// Iterating over the String
for (int i = 0; i < characters.length(); i++) {
// Taking particular character in the Iteration
str = "" + characters.charAt(i);
// Checking value of a particular character in the map
if (map.get(str) == null) {
// If not present in map, then add that to the map and list
map.put(str, 1);
list.add(str);
}
else {
index = map.get(str);
map.replace(str, index + 1);
}
}
}
我收到 java.lang.AssertionError,其中“a”的索引值在预期 <0> 的映射中不正确,但为 <5>。示例代码为:
LZWDictionary act = new LZWDictionary("ababababa");
List<String> exp = Arrays.asList("a","b");
最佳答案
已编辑@20191105:通过删除@Andreas建议的附加“int”变量来简化代码
<小时/>因此,您的代码的问题是重复处理相同的输入字符(如果您只想计算第一次遇到的出现)。
然后,正如@Andreas所提到的,应该将代码更改如下以获得您所描述的内容:
// Declaring index variable for holding Value
//int index = 0;
.
// Iterating over the String
for (int i = 0; i < characters.length(); i++) {
// Taking particular character in the Iteration
str = "" + characters.charAt(i);
// Checking value of a particular character in the map
/*
* if (map.get(str) == null) {
*
* // If not present in map, then add that to the map and list map.put(str, 1);
* list.add(str); }
*
* else {
*
* index = map.get(str); map.replace(str, index + 1); }
*/
// If not present in map, then add that to the map and list map.put(str, 1);
if (map.get(str) == null) {
//map.put(str, index++);
map.put(str, map.size());
list.add(str);
}
}
// Below is just for testing what has been put to the collections ...
Iterator<Map.Entry<String, Integer>> it = map.entrySet().iterator();
while (it.hasNext()) {
Entry<String, Integer> e = it.next();
System.out.println(e.getKey() + " ; " + e.getValue());
}
for (String a: list) {
System.out.println(a);
}
关于java - 使用 LinkedHashMap 到 List 时映射值不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58695109/
我是一名 Java 新手,在概念化如何解决尝试创建表示某些分层数据的 LinkedHashMap 的问题时遇到问题。 这是我目前所知的。在此示例中,我有一个 LinkedHashMap,它显示了展平的
我有 LinkedHashMap 列表,如何不可分割地访问每个 LinkedHashMap。 List> listOfRecords 我想要 List abc= new listOsRecords.1
我有一个 LinkedHashMap,其中包含另一个 LinkedHashMap,如下所示: LinkedHashMap> containerMap = new LinkedHashMap>(); 我
我有 2 个 LinkedHashMap, LinkedHashMap, Color> map; LinkedHashMap, Color> totalMap; 两者是相同的,但 map 已通过使用撤
我有一个 map 列表,我需要单独使用其中的每张 map 以用于进一步的目的。这是我正在使用的代码片段 for(int i = 0; i ()); } int j=0; whi
我有一个扩展 LinkedHashMap 的类 (EntireFile)。我尝试转换: EntireFile old = (EntireFile) functionReturningLinkedHas
我有一个构建 LinkedHashMap 的方法,这样我就可以保持顺序。这是我的方法: public class MyClass { public Map buildMap() {
我是 Scala 的新手。我一直在尝试将 java LinkedHashMap 转换为 Scala 中的等效集合(LinkedHashMap?)以保留插入顺序。 尝试按照其他线程中的建议进行操作,但似
我有一个LinkedHashMap看起来像这样(真的不知道如何说明 HashMap): { "10/10/2010 10:10:10" => "SomeText1", "10/10/2019
我被包裹了LinkedHashMap>进入列表; List>> list = new ArrayList(mainCodesMap.entrySet()); 哪个mainCodeMap是 Map> 的
我有两个链接的 HashMap (key - String, value = String[]),它们在两个链接的 HashMap 中具有相同的大小和相同的键,我希望能够根据键,验证一个链接 Hash
假设我有以下数据结构: LinkedHashMap> foodFamilies = new LinkedHashMap<>(); 看起来像这样: {Fruit = [{Name = Apple,
如何对 LinkedHashMap 的 Arraylist 进行排序 前任。 ArrayList> list = new ArrayList>(); LinkedHashMap lin
LinkedHashMap lHashMap = new LinkedHashMap(); lHashMap.put("One", new Integer(1)); lHashMap.
关闭。这个问题需要details or clarity .它目前不接受答案。 想改善这个问题吗?通过 editing this post 添加详细信息并澄清问题. 8年前关闭。 Improve thi
我有一个简单的问题来找到数组 A 中的第一个唯一元素。但是,令我困扰的是使用不同方法的时间复杂度。到目前为止,我已经尝试过这两种方法。 第一种方法: LinkedHashMap> map = new
这个问题已经有答案了: How do I compare strings in Java? (23 个回答) 已关闭 4 年前。 我正在尝试将一对放入 linkedhashmap 中,但是当我放入 2
我需要用Java实现很久以前在Delphi中实现的代码,我尝试使用LinkedHashMap(在Delphi中使用TStringlist),因为我需要在插入元素时获取元素的索引,问题是是它不起作用..
在正确实现 hashCode 和 equals() 的情况下,以下代码会返回 false? myLinkedHashMap.containsKey(myLinkedHashMap.keySet().i
我让 XStream 使用此 xml 为我构建链接 HashMap : #!/masterofsoundtrack/broadcast #!/masterofsoun
我是一名优秀的程序员,十分优秀!