Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のような変数、単純な条件、サイクル、および関数を使用して、コードのパーサーを作成する必要があります。
f=1; i=1; while(i<10){ f=f*i; i=i+1; } print(f);
私は多くの理論を読みましたが、Lr(1) Parser for code の実際の例は見つかりませんでした。パーサージェネレーターなしでそれを行う必要があります..誰か?