// 上一篇:工具和结构化 // 下一篇:野生程序员 教育心理学里面有提到"最近发展区"这个概念,这个概念是前苏联发展心理学家维果茨基(Vygotsky)提出的,英文名词是Zone of proximal development,摘录维基百科上的介绍如下: The zone of proximal development, often abbreviated as ZPD, is the difference between what a learner can do without…
// 上一篇:工具和结构化 // 下一篇:野生程序员 教育心理学里面有提到"最近发展区"这个概念,这个概念是前苏联发展心理学家维果茨基(Vygotsky)提出的,英文名词是Zone of proximal development,摘录维基百科上的介绍如下: The zone of proximal development, often abbreviated as ZPD, is the difference between what a learner can do without…
上一周的四则运算有bug,这次补充正确代码: // 中缀转后缀 public String[] SolveOrder(String[] in, HashMap<String, Integer> precedence) { // 符合逆波兰式(后缀)的输出 int kk=in.length; String out[] = new String[kk]; int p = 0 ; // 操作符 Stack<String> ops = new Stack<String>();…