- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
各位小白大家好。
我目前正在尝试编写一个修复后计算器程序,当我尝试清理冗余代码时,我发现根据我构建 ArrayDeque 的方式,即使数组内容相似,我的程序也会做出不同的 react 。我首先使用“.add()”重复填充我的 ArrayDeque,效果很好,但是我尝试使用字符串来清理它(这样我可以更有效地测试方程)所有这些都是在下面的测试类中完成的。我还留下了一些可能对你们有用的评论。
import java.math.BigInteger;
import java.util.ArrayDeque;
import java.util.Deque;
public class EvaluatorTest {
public static void main(String[] args) {
ArrayDeque < String > inFixEquation1 = new ArrayDeque < > ();
ArrayDeque < String > inFixEquation2 = new ArrayDeque < > ();
// Non DRY code: This for some reason doesnt work.
String equation = "A*(B+C)";
int temp = equation.length();
for (int i = 0; i < temp; i++) {
inFixEquation1.add(equation.substring(0, 1));
equation = equation.substring(1, equation.length());
}
// DRY code: While this does work.
inFixEquation2.add("A");
inFixEquation2.add("*");
inFixEquation2.add("(");
inFixEquation2.add("B");
inFixEquation2.add("+");
inFixEquation2.add("C");
inFixEquation2.add(")");
System.out.println("\nCreated inFix equation 1 = " + inFixEquation1);
System.out.println("Created inFix equation 2 = " + inFixEquation2);
Deque < String > postFixEquation = Evaluator.infixToPostfix(inFixEquation1); // I switch between the first and second inFixEquations here jsut by changing inFixeEquation1 to inFixEquation2
System.out.println("\nConverted inFix equation to postFix = " + postFixEquation);
System.out.println("postFix answer should equal = [A, B, C, +, *]");
BigInteger evaluated = Evaluator.evalPostfix(postFixEquation);
System.out.println("Evaulated postFix equation to BigInteger " +
"value = " + evaluated + "\n\nProgram end.");
}
}
我也为困惑的代码道歉,就像我说的,我正在清理代码。下面的代码是执行实际转换的类。
import java.math.BigInteger;
import java.util.*;
public class Evaluator {
public static Deque < String > infixToPostfix(Deque < String > in ) {
Deque < String > inFix = new ArrayDeque < String > ( in );
Deque < String > postFix = new ArrayDeque < > ();
Stack < String > storedOperators = new Stack();
Set < String > allOperators = new HashSet < >
(Arrays.asList("*", "/", "%", "+", "-", ")", "("));
for (int i = 0; i < in .size(); i++) {
if (!allOperators.contains(inFix.peek())) {
postFix.add(inFix.pop());
} else if (allOperators.contains(inFix.peek())) {
if (inFix.peek() == "(" || storedOperators.size() == 0 && inFix.peek() != ")") {
storedOperators.add(inFix.pop());
} else if (inFix.peek() == ")") { // The compiler seems to skip here when inFix.peek() equals ")" if I'm using the first ArrayDeque but not the second.
while (storedOperators.peek() != "(")
postFix.add(storedOperators.pop());
if (storedOperators.peek() == "(")
storedOperators.pop();
} else if (priorityCheck(inFix.peek(), storedOperators.peek())) {
while (inFix.size() > 0 && storedOperators.size() > 0 && priorityCheck(inFix.peek(), storedOperators.peek()))
postFix.add(storedOperators.pop());
storedOperators.add(inFix.pop());
} else if (!priorityCheck(inFix.peek(), storedOperators.peek())) {
storedOperators.add(inFix.pop());
}
}
}
for (int i = storedOperators.size(); i > 0; i--)
postFix.add(storedOperators.pop());
return postFix;
}
public static boolean priorityCheck(String inFix, String auxOp) {
boolean answer = false;
Map < String, Integer > opPriority = new HashMap < > () {
{
put("-", 1);
put("+", 2);
put("^", 3);
put("/", 4);
put("*", 5);
put("(", 1);
}
};
if (opPriority.get(inFix) < opPriority.get(auxOp))
answer = true;
return answer;
}
}
因此,如果我使用测试类中的第一个 ArrayDeque 方程运行,我会收到此错误,而第二个方程可以正常运行,你们知道这是为什么吗?我知道空指针来自哪里以及为什么它来自这个特定位置,但我想我主要想知道为什么我的程序没有捕获第二个类的第 19 行的最后一个“)”括号,当我手动构建没有 for 循环和字符串的 ArrayDeque 时它没有这样做。
Created inFix equation 1 = [A, *, (, B, +, C, )]
Created inFix equation 2 = [A, *, (, B, +, C, )]
Exception in thread "main" java.lang.NullPointerException
at Evaluator.priorityCheck(Evaluator.java:61)
at Evaluator.infixToPostfix(Evaluator.java:25)
at EvaluatorTest.main(EvaluatorTest.java:31)
最佳答案
opPriority
映射缺少)
运算符,您可以将)
优先级设置为1,例如:
Map<String, Integer> opPriority = new HashMap<String, Integer>() {
{
put("-", 1);
put("+", 2);
put("^", 3);
put("/", 4);
put("*", 5);
put("(", 1);
put(")", 1);
}
};
然后 EvaluatorTest
输出如下:
Created inFix equation 1 = [A, *, (, B, +, C, )]
Created inFix equation 2 = [A, *, (, B, +, C, )]
Converted inFix equation to postFix = [A, *, B, C, +, ), (]
postFix answer should equal = [A, B, C, +, *]
已更新
对于inFixEquation1
运行不正确的情况,是由比较两个字符串的方式引起的。
对于字符串值比较,您应该使用 oneStr.equals(otherStr)
而不是 ==
。 ==
表示比较字符串对象引用而不是字符串值。正确的做法如下:
public static Deque<String> infixToPostfix(Deque < String > in) {
Deque < String > inFix = new ArrayDeque< String >(in );
Deque < String > postFix = new ArrayDeque < > ();
Stack< String > storedOperators = new Stack();
Set< String > allOperators = new HashSet< >
(Arrays.asList("*", "/", "%", "+", "-", ")", "("));
for (int i = 0; i < in .size(); i++) {
if (!allOperators.contains(inFix.peek())) {
postFix.add(inFix.pop());
} else if (allOperators.contains(inFix.peek())) {
if (inFix.peek().equals("(") || storedOperators.size() == 0 && !inFix.peek().equals( ")")) {
storedOperators.add(inFix.pop());
} else if (inFix.peek().equals(")")) {
while (!storedOperators.peek().equals("("))
postFix.add(storedOperators.pop());
if (storedOperators.peek().equals("("))
storedOperators.pop();
} else if (priorityCheck(inFix.peek(), storedOperators.peek())) {
while (inFix.size() > 0 && storedOperators.size() > 0 && priorityCheck(inFix.peek(), storedOperators.peek()))
postFix.add(storedOperators.pop());
storedOperators.add(inFix.pop());
} else if (!priorityCheck(inFix.peek(), storedOperators.peek())) {
storedOperators.add(inFix.pop());
}
}
}
for (int i = storedOperators.size(); i > 0; i--)
postFix.add(storedOperators.pop());
return postFix;
}
关于java - 使用字符串填充 ArrayDeques 导致 NullPointerException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53349550/
padding:initial 比 padding:0 有什么优势吗?示例: textarea { padding: 0; } Hello, world! 最佳答案 它们的意思是一
我尝试通过按钮填充 JList,然后在先前填充的 Jlist 上使用 DoubleClick 填充 JTextField。 代码: private void extractUsedVariables
我正在尝试做 var width = ($(this).width() + $(this).css('padding-left') + $(this).css('padding-right' ));
我在导航中添加了悬停效果,遗憾的是悬停也影响了上面的文字。如何在不影响文本位置的情况下向导航添加悬停? 可悲的是,我找不到解决这个问题的方法。 HTML 模板:http://projects.help
我是 F# 初学者,下面代码中的 %-5s 和 %5s 有什么作用?我认为它提供了空间填充,但我不确定它是如何填充的? printfn "%-5s %5s" "a" "b" 当我尝试 prin
我需要选择带狗的用户(带 type 等于“狗”的宠物) var User = Waterline.Collection.extend({ identity: 'user', attribute
我一直在尝试让 Excel 在一组列上应用公式,然后将模式扩展到整个行集。 这导致了以下代码: For i = 0 To avgsheetNames.Count - 1 If Contains(CSt
随着 Flutter 2.0 的发布,FlatButton已被替换为 TextButton . 因此,填充属性不再直接可用,而是作为 ButtonStyle属性(property)。 我的问题是,我该
这似乎是一个简单的问题,但我已经尝试了一个小时,似乎无法弄清楚。 我要做的就是用 Canvas 填充 MainWindow。我找不到任何允许这样做的属性,我能想到的唯一方法是设置 Canvas.Wid
这是a website具有移动 View 。 网站宽度为 640 像素,但 iPhone 以 678 像素渲染文档。在 Android 中看起来很棒。 我添加了视口(viewport)元: 主体 C
我正在使用 GridBagLayout到(当前)显示两行。我知道这种布局对于这项任务来说太过分了,但我正在努力学习如何使用它。问题是我已将两个面板添加到两个单独的行中,并且内容周围存在巨大差距(请参见
我有以下代码已传递给我并创建多边形: var map; function initialize() { var myLatlng = new google.maps.LatLng(-36.4
我在 Jpanel 中有一些项目,然后将其推到顶部并用作基本搜索引擎的工具栏。我遇到一个问题,因为没有足够的空间,所以我的最后一个组合框没有显示。但是,左侧有很多空白空间,我需要移动所有内容来填充 J
我创建了带有阈值的二进制图像。如下图所示如何改变白色形状的颜色以使其可索引? 到目前为止,这是我的代码: void threshold() { cv::Mat src_8uc3_img = c
我有一个 JTable,我想知道是否有更好的方法来填充它,这是我的代码: //Metodo para llenar un jtable con datos de la base public stat
我想要做的是裁剪一个卷以删除所有不相关的数据。例如,假设我有一个 100x100x100 的体积,其中填充了 0,但其中的 50x50x50 体积则填充了 1。如何从原始体积中获得裁剪后的 50x50
因此,我正在创建一种对一组数字进行洗牌的方法,其想法是创建这些数字的总体。因此,我创建了一个循环,对数字进行洗牌,然后将其添加到数组列表中,但是经过一些调试语句后,我发现它确实对数字进行洗牌,但只将最
假设我有这两个类: public class A where T : IEntityWithID, new() { private static EntityInfo entityInfo =
我正在尝试添加用户输入的两个大整数作为字符串。当两个输入字符串的长度不同时,我尝试用零填充较短的数字,但它不起作用。因此,如果我输入 456 和 7,它会给出 3,前面有一些随机字符。感谢您的任何建议
这是我将内容打印到表格 View 的代码 override func tableView(_ tableView: UITableView, cellForRowAt indexPath: Index
我是一名优秀的程序员,十分优秀!