增加淘宝群内容,修改部分文件组织
此提交包含在:
@@ -0,0 +1,220 @@
|
||||
// Copyright 2011 David Galles, University of San Francisco. All rights reserved.
|
||||
//
|
||||
// Redistribution and use in source and binary forms, with or without modification, are
|
||||
// permitted provided that the following conditions are met:
|
||||
//
|
||||
// 1. Redistributions of source code must retain the above copyright notice, this list of
|
||||
// conditions and the following disclaimer.
|
||||
//
|
||||
// 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
||||
// of conditions and the following disclaimer in the documentation and/or other materials
|
||||
// provided with the distribution.
|
||||
//
|
||||
// THIS SOFTWARE IS PROVIDED BY David Galles ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
||||
// WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
||||
// FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL David Galles OR
|
||||
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||||
// ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
// ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
//
|
||||
// The views and conclusions contained in the software and documentation are those of the
|
||||
// authors and should not be interpreted as representing official policies, either expressed
|
||||
// or implied, of the University of San Francisco
|
||||
|
||||
|
||||
|
||||
function RecFact(am, w, h)
|
||||
{
|
||||
this.init(am, w, h);
|
||||
|
||||
}
|
||||
|
||||
RecFact.prototype = new Recursive();
|
||||
RecFact.prototype.constructor = RecFact;
|
||||
RecFact.superclass = Recursive.prototype;
|
||||
|
||||
|
||||
RecFact.MAX_VALUE = 20;
|
||||
|
||||
RecFact.ACTIVATION_FIELDS = ["n ", "subValue ", "returnValue "];
|
||||
RecFact.CODE = [["def ","factorial(n)",":"],
|
||||
[" if ","(n <= 1): "],
|
||||
[" return 1"],
|
||||
[" else:"],
|
||||
[" subSolution = ", "factorial(n - 1)"],
|
||||
[" solution = ", "subSolution * n"],
|
||||
[" return ", "solution"]];
|
||||
|
||||
|
||||
RecFact.RECURSIVE_DELTA_Y = RecFact.ACTIVATION_FIELDS.length * Recursive.ACTIVATION_RECORD_HEIGHT;
|
||||
|
||||
RecFact.ACTIVATION_RECORT_START_X = 330;
|
||||
RecFact.ACTIVATION_RECORT_START_Y = 20;
|
||||
|
||||
|
||||
|
||||
RecFact.prototype.init = function(am, w, h)
|
||||
{
|
||||
RecFact.superclass.init.call(this, am, w, h);
|
||||
this.nextIndex = 0;
|
||||
this.addControls();
|
||||
this.code = RecFact.CODE;
|
||||
|
||||
|
||||
this.addCodeToCanvas(this.code);
|
||||
|
||||
this.animationManager.StartNewAnimation(this.commands);
|
||||
this.animationManager.skipForward();
|
||||
this.animationManager.clearHistory();
|
||||
this.initialIndex = this.nextIndex;
|
||||
this.oldIDs = [];
|
||||
this.commands = [];
|
||||
}
|
||||
|
||||
|
||||
RecFact.prototype.addControls = function()
|
||||
{
|
||||
this.controls = [];
|
||||
this.factorialField = addControlToAlgorithmBar("Text", "");
|
||||
this.factorialField.onkeydown = this.returnSubmit(this.factorialField, this.factorialCallback.bind(this), 2, true);
|
||||
this.controls.push(this.factorialField);
|
||||
|
||||
this.factorialButton = addControlToAlgorithmBar("Button", "Factorial");
|
||||
this.factorialButton.onclick = this.factorialCallback.bind(this);
|
||||
this.controls.push(this.factorialButton);
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
RecFact.prototype.factorialCallback = function(event)
|
||||
{
|
||||
var factValue;
|
||||
|
||||
if (this.factorialField.value != "")
|
||||
{
|
||||
var factValue = Math.min(parseInt(this.factorialField.value), RecFact.MAX_VALUE);
|
||||
this.factorialField.value = String(factValue);
|
||||
this.implementAction(this.doFactorial.bind(this),factValue);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
RecFact.prototype.doFactorial = function(value)
|
||||
{
|
||||
this.commands = [];
|
||||
|
||||
this.clearOldIDs();
|
||||
|
||||
this.currentY = RecFact.ACTIVATION_RECORT_START_Y;
|
||||
this.currentX = RecFact.ACTIVATION_RECORT_START_X;
|
||||
|
||||
var final = this.factorial(value);
|
||||
var resultID = this.nextIndex++;
|
||||
this.oldIDs.push(resultID);
|
||||
this.cmd("CreateLabel", resultID, "factorial(" + String(value) + ") = " + String(final),
|
||||
Recursive.CODE_START_X, Recursive.CODE_START_Y + (this.code.length + 1) * Recursive.CODE_LINE_HEIGHT, 0);
|
||||
//this.cmd("SetText", functionCallID, "factorial(" + String(value) + ") = " + String(final));
|
||||
return this.commands;
|
||||
}
|
||||
|
||||
|
||||
RecFact.prototype.factorial = function(value)
|
||||
{
|
||||
var activationRec = this.createActivation("factorial ", RecFact.ACTIVATION_FIELDS, this.currentX, this.currentY);
|
||||
this.cmd("SetText", activationRec.fieldIDs[0], value);
|
||||
// this.cmd("CreateLabel", ID, "", 10, this.currentY, 0);
|
||||
var oldX = this.currentX;
|
||||
var oldY = this.currentY;
|
||||
this.currentY += RecFact.RECURSIVE_DELTA_Y;
|
||||
if (this.currentY + Recursive.RECURSIVE_DELTA_Y > this.canvasHeight)
|
||||
{
|
||||
this.currentY = RecFact.ACTIVATION_RECORT_START_Y;
|
||||
this.currentX += Recursive.ACTIVATION_RECORD_SPACING;
|
||||
}
|
||||
this.cmd("SetForegroundColor", this.codeID[0][1], Recursive.CODE_HIGHLIGHT_COLOR);
|
||||
this.cmd("Step");
|
||||
this.cmd("SetForegroundColor", this.codeID[0][1], Recursive.CODE_STANDARD_COLOR);
|
||||
this.cmd("SetForegroundColor", this.codeID[1][1], Recursive.CODE_HIGHLIGHT_COLOR);
|
||||
this.cmd("Step");
|
||||
this.cmd("SetForegroundColor", this.codeID[1][1], Recursive.CODE_STANDARD_COLOR);
|
||||
if (value > 1)
|
||||
{
|
||||
this.cmd("SetForegroundColor", this.codeID[4][1], Recursive.CODE_HIGHLIGHT_COLOR);
|
||||
this.cmd("Step");
|
||||
this.cmd("SetForegroundColor", this.codeID[4][1], Recursive.CODE_STANDARD_COLOR);
|
||||
|
||||
var firstValue = this.factorial(value-1);
|
||||
|
||||
this.cmd("SetForegroundColor", this.codeID[4][0], Recursive.CODE_HIGHLIGHT_COLOR);
|
||||
this.cmd("SetForegroundColor", this.codeID[4][1], Recursive.CODE_HIGHLIGHT_COLOR);
|
||||
this.cmd("SetText", activationRec.fieldIDs[1], firstValue);
|
||||
this.cmd("Step");
|
||||
this.cmd("SetForegroundColor", this.codeID[4][0], Recursive.CODE_STANDARD_COLOR);
|
||||
this.cmd("SetForegroundColor", this.codeID[4][1], Recursive.CODE_STANDARD_COLOR);
|
||||
|
||||
this.cmd("SetForegroundColor", this.codeID[5][0], Recursive.CODE_HIGHLIGHT_COLOR);
|
||||
this.cmd("SetForegroundColor", this.codeID[5][1], Recursive.CODE_HIGHLIGHT_COLOR);
|
||||
this.cmd("SetText", activationRec.fieldIDs[2], firstValue * value);
|
||||
this.cmd("Step");
|
||||
this.cmd("SetForegroundColor", this.codeID[5][0], Recursive.CODE_STANDARD_COLOR);
|
||||
this.cmd("SetForegroundColor", this.codeID[5][1], Recursive.CODE_STANDARD_COLOR);
|
||||
|
||||
this.cmd("SetForegroundColor", this.codeID[6][0], Recursive.CODE_HIGHLIGHT_COLOR);
|
||||
this.cmd("SetForegroundColor", this.codeID[6][1], Recursive.CODE_HIGHLIGHT_COLOR);
|
||||
|
||||
this.cmd("Step");
|
||||
this.deleteActivation(activationRec);
|
||||
this.currentY = oldY;
|
||||
this.currentX = oldX;
|
||||
this.cmd("CreateLabel", this.nextIndex, "Return Value = " + String(firstValue * value), oldX, oldY);
|
||||
this.cmd("SetForegroundColor", this.nextIndex, Recursive.CODE_HIGHLIGHT_COLOR);
|
||||
this.cmd("Step");
|
||||
this.cmd("SetForegroundColor", this.codeID[6][0], Recursive.CODE_STANDARD_COLOR);
|
||||
this.cmd("SetForegroundColor", this.codeID[6][1], Recursive.CODE_STANDARD_COLOR);
|
||||
this.cmd("Delete",this.nextIndex);
|
||||
|
||||
|
||||
|
||||
// this.cmd("SetForegroundColor", this.codeID[4][3], Recursive.CODE_HIGHLIGHT_COLOR);
|
||||
// this.cmd("Step");
|
||||
|
||||
return firstValue *value;
|
||||
}
|
||||
else
|
||||
{
|
||||
this.cmd("SetForegroundColor", this.codeID[2][0], Recursive.CODE_HIGHLIGHT_COLOR);
|
||||
this.cmd("Step");
|
||||
this.cmd("SetForegroundColor", this.codeID[2][0], Recursive.CODE_STANDARD_COLOR);
|
||||
|
||||
|
||||
this.currentY = oldY;
|
||||
this.currentX = oldX;
|
||||
this.deleteActivation(activationRec);
|
||||
this.cmd("CreateLabel", this.nextIndex, "Return Value = 1", oldX, oldY);
|
||||
this.cmd("SetForegroundColor", this.nextIndex, Recursive.CODE_HIGHLIGHT_COLOR);
|
||||
this.cmd("Step");
|
||||
this.cmd("Delete",this.nextIndex);
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
var currentAlg;
|
||||
|
||||
function init()
|
||||
{
|
||||
var animManag = initCanvas();
|
||||
currentAlg = new RecFact(animManag, canvas.width, canvas.height);
|
||||
}
|
||||
|
||||
|
||||
|
新增問題並參考
封鎖使用者