Files
2022-02-16 18:18:09 +01:00

5.3 KiB

id, title, challengeType, forumTopicId, dashedName
id title challengeType forumTopicId dashedName
59e0a8df964e4540d5abe599 Esegui Brain**** 5 302261 execute-brain

--description--

Scrivi una funzione per implementare un interprete Brain****. La funzione dovrà prendere una stringa come parametro e restituire una stringa come output. Maggiori dettagli sono riportati di seguito:

RCBF è un set di compilatori e interpreti Brainf*** scritti per Rosetta Code in una varietà di linguaggi.

Di seguito sono riportati i link a ciascuna delle versioni di RCBF.

Un'implementazione deve solo attuare correttamente le seguenti istruzioni:

Comando Descrizione
> Sposta il puntatore a destra
< Sposta il puntatore a sinistra
+ Incrementa la cella di memoria al puntatore
- Decrementa la cella di memoria al puntatore
. Esegue l'output del carattere indicato dalla cella al puntatore
, Inserisci un carattere e memorizzalo nella cella al puntatore
[ Salta oltre la corrispondente ] se la cella al puntatore è 0
] Torna indietro alla corrispondente [ se la cella sotto il puntatore non è zero

Qualsiasi dimensione della cella è consentita, il supporto EOF (End-Of-File) è opzionale, come se tu avessi una memoria limitata o illimitata.

--hints--

brain(bye) dovrebbe restituire una stringa

assert(typeof brain(bye) === 'string');

brain("++++++[>++++++++++<-]>+++++.") dovrebbe restituire "A"

assert.equal(brain('++++++[>++++++++++<-]>+++++.'), 'A');

brain(bye) dovrebbe restituire Goodbye, World!\r\n

assert.equal(brain(bye), 'Goodbye, World!\r\n');

brain(hello) dovrebbe restituire Hello World!\n

assert.equal(brain(hello), 'Hello World!\n');

brain(fib) dovrebbe restituire 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89

assert.equal(brain(fib), '1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89');

--seed--

--before-user-code--

let fib=`+

++

+++

++++

+>+>>

>>++++

+++++++

++++++++

+++++++++

++++++++++

++++++>++++

++++++++++++

+++++++++++++

+++<<<<<<[>[>>

>>>>+>+<<<<<<<-

]>>>>>>>[<<<<<<<

+>>>>>>>-]<[>++++

++++++[-<-[>>+>+<<

<-]>>>[<<<+>>>-]+<[

>[-]<[-]]>[<<[>>>+<<

<-]>>[-]]<<]>>>[>>+>+

<<<-]>>>[<<<+>>>-]+<[>

[-]<[-]]>[<<+>>[-]]<<<<

<<<]>>>>>[++++++++++++++

+++++++++++++++++++++++++

+++++++++.[-]]++++++++++<[

->-<]>+++++++++++++++++++++

+++++++++++++++++++++++++++.

[-]<<<<<<<<<<<<[>>>+>+<<<<-]>

>>>[<<<<+>>>>-]<-[>>.>.<<<[-]]

<<[>>+>+<<<-]>>>[<<<+>>>-]<<[<+

>-]>[<+>-]<<<-]`;
let hello='++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>.>---.+++++++..+++.>>.<-.<.+++.------.--------.>>+.>++.'
let bye='++++++++++[>+>+++>++++>+++++++>++++++++>+++++++++>++++++++++>+++++++++++>++++++++++++<<<<<<<<<-]>>>>+.>>>>+..<.<++++++++.>>>+.<<+.<<<<++++.<++.>>>+++++++.>>>.+++.<+++++++.--------.<<<<<+.<+++.---.';

--seed-contents--

function brain(prog) {

}

--solutions--

function brain(prog){
  var output="";
    var code; // formatted code
  var ip = 0; // current instruction within code
  var nest = 0; // current bracket nesting (for Out button)
  var ahead = []; // locations of matching brackets

  var data = [0]; // data array (mod by +, -)
  var dp = 0; // index into data (mod by <, >)

  var inp = 0; // current input character (fetch with ,)
  var quit = 0;
    var commands = {
    '>':function() { if (++dp >= data.length) data[dp]=0 },
    '<':function() { if (--dp < 0) quit++ },
    '+':function() { ++data[dp] },
    '-':function() { --data[dp] },
    '[':function() { if (!data[dp]) ip = ahead[ip]; else ++nest },
    ']':function() { if ( data[dp]) ip = ahead[ip]; else --nest },
    ',':function() {
        var c = document.getElementById("input").value.charCodeAt(inp++);
        data[dp] = isNaN(c) ? 0 : c; // EOF: other options are -1 or no change
    },
    '.':function() {
            output+=String.fromCharCode(data[dp]);
            /*var s = document.getElementById("output").innerHTML)
             + String.fromCharCode(data[dp]);
            s = s.replace(/\n/g,"<br>").replace(/ /g,"&amp;nbsp;");
            document.getElementById("output").innerHTML = s;*/
        },
    };

    let ar=prog.split('');
    var st = [], back, error = -1;
    for (ip=0; ip<ar.length; ip++) {
        switch(ar[ip]) {
        case '[':
            st.push(ip);
            break;
        case ']':
            if (st.length == 0) error = ip;
            back = st.pop();
            ahead[ip] = back;
            ahead[back] = ip;
            break;
        }
    }

    for(ip=0;ip<ar.length;ip++){
    if(commands.hasOwnProperty(ar[ip]))
          commands[ar[ip]]();
    }

    return output;
}