首页 > 其他分享 >《自动机理论、语言和计算导论》阅读笔记:p261-p314

《自动机理论、语言和计算导论》阅读笔记:p261-p314

时间:2024-04-22 23:00:27浏览次数:27  
标签:自动机 p261 导论 p314 引理 adj properties

《自动机理论、语言和计算导论》学习第 10 天,p261-p314总结,总计 48 页。

一、技术总结

1.generating & reachable

2.Chomsky Normal Form(CNF)

乔姆斯基范式。

3.pumping lemma

泵作用引理。引理:引理是数学中为了取得某个更好的结论而作为步骤的已证明命题,其意义并不在于自身已完成证明,而在于其为了达成最终目的而做出贡献。

4.上下文无关语言的性质

(1)closure property

二、英语总结

1.sort

c. a group of things that are of the same type。

p261, Next, we consider the sorts of properties that we studied in Chapter 4 for the regular language: closure properties and decision properties。

2.preliminary

pre(before) + limen(threshold, 参考limit)。adj. preceeding sth more important。

p261, To get there, we need to make number of preliminary simplifications, which are themselves useful in various ways。

3.sentential

adj. pertaining to sentence(参考sentence)。

4.lemma

c. a subsidiary or intermediate theorem in an argument or proof(引理)。

5.parallel用法总结

(1)adj. be similar to sth。

p287, Many of the closure properties will parallel the theorems we had for regular languages in Section 4.2. However, there are some difference。

三、其它

无。

四、参考资料

1. 编程

(1)Eric S.Roberts,《自动机理论、语言和计算导论(英文版.第3版)》:https://book.douban.com/subject/2274854/

2. 英语

(1)Etymology Dictionary:https://www.etymonline.com

(2) Cambridge Dictionary:https://dictionary.cambridge.org

欢迎搜索及关注:编程人(a_codists)

标签:自动机,p261,导论,p314,引理,adj,properties
From: https://www.cnblogs.com/codists/p/18151777

相关文章

  • 回文自动机
    求以每个节点结尾的,回文子串的个数,最大回文子串的长度求回文串的总个数(必须连续)不连续的是动态规划#include<bits/stdc++.h>usingnamespacestd;constintmaxn=500005;charstr[maxn];structPAM{intsize,last,r0,r1;inttrie[maxn][26],fail[maxn],l......
  • AC自动机
    二次加强版那个题距离最大内存,就差了一个ss数组了....96分#include<bits/stdc++.h>#definemaxn2000001usingnamespacestd;stringss[100000];chars[maxn],T[maxn];intn,cnt,vis[200051],ans,in[maxn],Map[maxn];structkkk{intson[26],fail,flag,ans;voi......
  • 【学习笔记】 字符串基础 : 后缀自动机(基础篇)
    本文只介绍关于\(\mathbf{SAM}\)的基本概念与实现后缀自动机是什么类似\(\text{AC}\)自动机,后缀自动机(\(\text{SAM}\))是能且只能接收字符串所有后缀的自动机我们首先要知道,\(\mathbf{SAM}\)是只能接收所有后缀的结构而不是只能维护后缀的结构事实上\(\mathbf{SAM}\)......
  • 《自动机理论、语言和计算导论》阅读笔记:p139-p171
    《自动机理论、语言和计算导论》学习第7天,p139-p171总结,总计33页。一、技术总结1.reversalp139,Thereversalofastringa1a2...anisthestringwrittenbackwards,thatisanan-1...a1.2.homomorphismAstringhomomorphismisafunctiononstringsthatwokrs......
  • AC 自动机
    参考博客:常见字符串算法II:自动机相关前置知识AC自动机结合了KMP和字典树的思想,将匹配放到字典树上,构建fail指针,实现多模匹配。先对模式串构建Trie。字典树上的一个节点对应了模式串的一个前缀,我们称其为一个状态。状态\(u\)的失配指针\(\text{fail}(u)\)指向状态......
  • P2613 【模板】有理数取余
    原题链接题解然后就变成了求解同余方程code#definelllonglong#include<bits/stdc++.h>constllmod=19260817;usingnamespacestd;llx,y;llc;lla,b;inlinevoidread(ll&x){x=0;llflag=1;charc=getchar();while(c<'0......
  • 《自动机理论、语言和计算导论》阅读笔记:p115-p138
    《自动机理论、语言和计算导论》学习第6天,p115-p138总结,总计24页。一、技术总结1.associativityandcomutativity(1)commutativity(交换性):Commutativityisthepropertyofanoperatorthatsayswecanswitchtheorderofitsoperandsandgetthesameresult.......
  • 后缀自动机 SAM
    后缀自动机SAM#算法SAM满足如下性质有向无环图每个转移只有一个字符接受且只接受\(S\)的后缀节点数在满足上述条件下最小考虑不满足性质\(3\),那么\(trie\)就可以做到将这个\(trie\)建出来后,发现有很多完全相同的子树定义\(endpos(s)\)表示串\(s\)在\(S\)......
  • 《自动机理论、语言和计算导论》阅读笔记:p68-p114
    《自动机理论、语言和计算导论》学习第4天,p68-p114总结,总计47页。一、技术总结1.invertedindexes明白单词的意思是“反转的索引”,但是不明白其在书中具体指什么,去查询资料的话需要花很不多时间,先继续往下看。遇到这种场景的可能性还是比较多的。2.lexicalanalysis(1)lexico......
  • 后缀自动机的一些题目的整理
    后缀自动机的一些题目的整理P3804【模板】后缀自动机(SAM)P3804【模板】后缀自动机(SAM)板子题,没啥好说的。#include<bits/stdc++.h>usingnamespacestd;typedeflonglongll;constintN=2e6+5;inttot=1,last=1,idx,n;intver[N],h[N],ne[N];chars[N];llf[N],ans......