A context-sensitive grammar is a type of grammar that generates precisely the context-sensitive languages.

learn more… | top users | synonyms

0
votes
1answer
35 views

How to separate out the context-free part of a language from the context-sensitive part?

I read this fantastic post on the comp.theory list: http://coding.derkeiler.com/Archive/General/comp.theory/2004-03/0189.html The poster makes the point that most programming languages define a ...
1
vote
1answer
93 views

What is this grammar? Context-free or context sensitive

I am studying Formal Languages and Automata Theory, and I have a question about a problem inside the book that is not answered in it. the question is: Is this language Context Free, Regular or ...
-1
votes
1answer
498 views

Construct grammar given the following language {a^n b^m | n,m = 0,1,2,…,n <= 2m} [closed]

I just took my midterm but couldn't answer this question. Can someone please give a couple of examples of the language and construct a grammar for the language or at least show me how i will go ...
0
votes
1answer
95 views

How to use context-sensitive grammar in sentiment analysis?

Is it possible to use context-sensitive grammar in sentiment analysis? If yes, then how? Basically, I want to do some phrase-level analysis.
220
votes
19answers
20k views

Is C++ context-free or context-sensitive?

I often hear claims that C++ is a context-sensitive language. Take the following example: a b(c); Is this a variable definition or a function declaration? That depends on the meaning of the symbol ...
1
vote
1answer
134 views

Can someone give a simple but non-toy example of a context-sensitive grammar? [closed]

I'm trying to understand context-sensitive grammars, and I understand why languages like {ww | w is a string} {an bn cn | a,b,c are symbols} are not context free, but what I'd like to ...
0
votes
1answer
89 views

Which languages are context-sensitive? [closed]

I'm learning "Compiler Theory", it says most of languages used "deterministic context-free grammar". I wonder is there any language use "context-sensitive grammar"? Update: I asked someone, he ...
0
votes
2answers
581 views

Examples of Non Context free language in C language?

What are examples of non - context free languages in C language ? How the following non-CFL exists in C language ? a) L1 = {wcw|w is {a,b}*} b) L2 = {a^n b^m c^n d^m| n,m >=1}
0
votes
1answer
134 views

What are the parsing algorithms for programmed grammars?

I want to know what are the parsing algorithms used for parsing programmed grammars. Any Links , blogs or anything where i can read about programmed grammars and there parsing algorithms except IEEE ...
2
votes
1answer
1k views

Difference between Context-sensitive grammar and Context-free grammar [duplicate]

Possible Duplicate: Context-sensitive grammar and Context-free grammar In my textbook, here is the explain of these two terms : Context Sensitive Grammar: grammar can have productions ...
1
vote
1answer
82 views

Converting a language specification into production rules (not sure if it's a CFG or CSG)

I have to write a function that checks whether input strings are valid for a given language specification. I thought that this would be a standard CFG -> Chomsky Normal Form, then CYK parsing, but one ...
0
votes
1answer
101 views

Context sensitive grammar for this language

Language X = { 0^m such that m = 2n+1 where n >= 0} Can someone help me find the context sensitive grammar for X? Ive been trying for ages but im still not close. What i have right now: S -> B0C|00 ...
8
votes
2answers
343 views

chomsky hierarchy in plain english

I'm trying to find a plain (i.e. non-formal) explanation of the 4 levels of formal grammars (unrestricted, context-sensitive, context-free, regular) as set out by Chomsky. It's been an age since I ...
2
votes
2answers
277 views

Context sensitive language with non deterministic turing machine

how can i show a language is context sensitive with a non deterministic turing machine? i know that a language that is accepted by a Linear bound automaton (LBA ) is a context -sensitive language. ...
2
votes
1answer
241 views

Pumping lemma for context-sensitive language?

i have googled on pumping lemma for context sensitive, and it seems to only produce results for context-free language. Pumping lemma only allows to prove a language is context free only? and not ...
3
votes
3answers
3k views

Context-sensitive grammar and Context-free grammar

Can someone explain to me why grammars [context-free grammar and context-sensitive grammar] of this kind accepts a String? What i know is Context-free grammar is a formal grammar in which every ...
5
votes
1answer
718 views

Parsing Context Sensitive Language

i am reading the Definitive ANTLR reference by Terence Parr, where he says: Semantic predicates are a powerful means of recognizing context-sensitive language structures by allowing runtime ...