Gli insiemi Prima e Dopo per le grammatiche senza contesto sono sempre senza contesto?


14

Lascia che G sia una grammatica senza contesto. Una stringa di terminali e non terminali di G è detto essere una forma sentential di G se lo si può ottenere applicando produzioni di G zero o più volte al simbolo iniziale di S . Let SF(G) l'insieme di forme proposizionali di G .

Sia αSF(G) e sia β una sottostringa di α - chiamiamo β un frammento di SF(G) . Adesso molla

Before(β)={γ | δ.γβδSF(G)}

e

After(β)={δ | γ.γβδSF(G)} .

Le lingue Before(β) e After(β) contesto? E se G non fosse ambiguo? Se G non è inequivocabile, Before(β) e After(β) anche descrivibili da un linguaggio inequivocabile senza contesto?

Questo è un seguito alla mia domanda precedente , dopo che un precedente tentativo di rendere più facile rispondere alla mia domanda non è riuscito. Una risposta negativa renderà molto difficile rispondere alla domanda comprensiva a cui sto lavorando.

Risposte:


8

Diamo una sensazione per e After (Before(β) prima. Considera un albero di derivazione che contiene β ; "contiene" qui significa che puoi tagliare i sottotitoli in modo che β sia una parola secondaria del fronte dell'albero. Quindi, il set prima (dopo) sono tutti i potenziali fronti della parte dell'albero a sinistra (a destra) di β :After(β)βββ

tree with before and after sets
[ fonte ]

Quindi dobbiamo costruire una grammatica per la parte dell'albero allineata orizzontalmente (allineata verticalmente). Sembra abbastanza facile dato che abbiamo già una grammatica per l'intero albero; dobbiamo solo assicurarci che tutti i moduli sentenziali siano parole (cambiare gli alfabeti), filtrare quelli che non contengono (che è una proprietà regolare poiché β è fisso) e tagliare tutto dopo (prima) β , incluso β . Questo taglio dovrebbe anche essere possibile.ββββ


Ora per una prova formale. Trasformeremo la grammatica come indicato e utilizzeremo le proprietà di chiusura di per eseguire il filtraggio e il taglio, ovvero eseguiremo una prova non costruttiva.CFL

Sia una grammatica senza contesto. È facile vedere che SF ( G ) è privo di contesto; costruire G = ( N , T , δ , N S ) in questo modo:G=(N,T,δ,S)SF(G)G=(N,T,δ,NS)

  • N={NAAN}
  • T=NT
  • δ={α(A)α(β)Aβδ}{NAAAN}

con per tutti t T e α ( A ) = N A per tutti una N . È chiaro che L ( G ) = SF ( G ) ; quindi il prefisso di chiusura corrispondente Pref ( SF ( G ) ) e suffisso chiusura Suff ( SF ( G ) )α(t)=ttTα(A)=NAaNL(G)=SF(G)Pref(SF(G))Suff(SF(G)) sono privi di contesto, too¹.

Ora, per qualsiasi sono L ( β ( N T ) ) e L ( ( N T ) β ) lingue regolari. Dato che C F L è chiuso sotto l'intersezione e il quoziente destro / sinistro con lingue regolari, otteniamoβ(NT)L(β(NT))L((NT)β)CFL

Before(β)=(Pref(SF(G))  L((NT)β))/βCFL

e

.After(β)=(Suff(SF(G))  L(β(NT)))βCFL


¹ è chiuso sotto il quoziente destro (e sinistro) ; Pref ( L ) = L / Σ e simili per prefisso rendimento Suff resp. chiusura del suffisso.CFLPref(L)=L/ΣSuff


I started to write an answer then realized my proof was the same as yours. I'd have put it this way (compressed to fit here): form a grammar G by adding a new terminal A^ (a metavariable) for each non-terminal A and a production AA^. Then sentential forms of G are the words recognized by G that consist of metavariables. This is the intersection of a CFG with a regular language and thus is regular. The prefix set of a CFG is a CFG (take a PDA and make every state final). Before(γ)={γγβL(Prefix(G^))} is again a CFG.
Gilles 'SO- stop being evil'

1
@Gilles, three comments on that: 1) the sentential forms typically (properly) contain the language. 2) "make every state final" -- that won't work; you'll accept prefixes of non-words, too. 3) The last step of "cutting off" a suffix seems to be tricky to get rigorous. :/ Do you have a rigorous but more compact proof than mine?
Raphael

Gbb

9

Before(β) and After(β) are context-free languages. Here's how I would prove it. First, a lemma (which is the crux). If L is CF then:

Before(L,β)={γ | δ.γβδL}

and

After(L,β)={γ | δ.δβγL}

are CF.

Proof? For Before(L,β) construct a non-deterministic finite-state transducer Tβ that scans a string, outputting every input symbol it sees and simultaneously searches non-deterministically for β. Whenever Tβ sees the first symbol of β it forks non-deterministically and ceases outputting symbols until either it finishes seeing β or it sees sees a symbol that deviates from β, stopping in either case. If Tβ sees β in full, it accepts upon stopping, which is the only way it accepts. If it sees a deviation from β, it rejects.

The lemma can be jiggered to handle cases where β could overlap with itself (like abab -- keep looking for β even while in the midst of scanning for a prior β) or appears multiple times (actually, the original non-determinisic forking already handles that).

It's fairly clear that Tβ(L)=Before(L,β), and since the CFLs are closed under finite-state transduction, Before(L,β) is therefore CF.

A similar argument goes for After(L,β), or it could be done with string reversals from Before(L,β) , CFLs also being closed under reversal:

After(L,β)=rev(Before(rev(L),rev(β)))

Actually, now that I see the reversal argument, it would be even easier to start with After(L,β), since the transducer for that is simpler to describe and verify -- it outputs the empty string while looking for a β. When it finds β it forks non-deterministically, one fork continuing to look for further copies of β, the other fork copying all subsequent characters verbatim from input to output, accepting all the while.

What remains is to make this work for sentential forms as well as CFLs. But that is pretty straightforward, since the language of sentential forms of a CFG is itself a CFL. You can show that by replacing every non-terminal X throughout G by say X, declaring X to be a terminal, and adding all productions XX to the grammar.

I'll have to think about your question on unambiguity.

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.