• 2024-11-2594. 二叉树的中序遍历
    问题描述给定root,返回中序遍历,答案格式:classSolution{public:vector<int>inorderTraversal(TreeNode*root){}};则:将vector作为static或者全局变量,可以在该函数中实现递归;写另外一个函数专门用来递归;法一、使用另外的递归函数classSolution{
  • 2024-10-05FIT2014 Lexical analysis, Parsing
    FIT2014Assignment2RegularLanguages,Context-FreeLanguages,Lexicalanalysis,Parsing,TuringmachinesandQuantumComputationDUE:11:55pm,Friday4October2024Intheseexercises,youwill•implementalexicalanalyserusinglex(Problem3);•imp
  • 2024-08-30UVA12421 (Jiandan) Mua (I) - Lexical Analyzer题解
    没什么废话、超级珂爱的大模拟。本蒟蒻写了2h才过。其实就是按题意模拟即可,不需要什么高深的算法。本人就是错在了符号中的“=”,因为如果是连续的两个等于号,只能输出“==”,而不能输出“=”“==”,然后本人就卡在这个地方卡了1.5h。代码量也不大,主要是毒瘤细节模拟题。