SlideShare a Scribd company logo
2
 Pattern slides over text one by one and tests for a match.
 When match found return the starting index number from where the pattern is
found in the text
 Slide by 1 again to check for subsequent matches of the pattern in the text.
Most read
7
Hey Friends,
This was just a summary on Naive String Matching AlgorithmNaive String Matching Algorithm. For more
detailed information on this topic, please type the link given below or copy it
from the description of this PPT and open it in a new browser window.
http://www.transtutors.com/homework-help/computer-science/naive-string-
matching-algorithm.aspx
Most read
Naive String Matching Algorithm | Computer Science
 Pattern slides over text one by one and tests for a match.
 When match found return the starting index number from where the pattern is
found in the text
 Slide by 1 again to check for subsequent matches of the pattern in the text.
Naive String Matching Algorithm | Computer Science
Compare 1 to 1.
Match is found !!!
Slide the pattern by one then 3 would be compared with 1.
No match found!!!
Again the pattern will slide by one until a continuous match is found.
Now the comparison would be as follows:
Match is found !!!
String search will return index number 2.
Naive String Matching Algorithm | Computer Science
Naïve string matching algorithm Pseudocode:
{
n = length(text);
m = length(patter,);
limit = n-m;
j = 0, k = 0;
array_Shift[];
for(i = 0; i <= limit; i++)
{
j = 0;
k = i;
for(j = 0; j <= m AND str[k] == pat[j]; j++)
k++;
if(j >= m)
Add i to array_Shift;
}
return array_Shift;
}
Hey Friends,
This was just a summary on Naive String Matching AlgorithmNaive String Matching Algorithm. For more
detailed information on this topic, please type the link given below or copy it
from the description of this PPT and open it in a new browser window.
http://www.transtutors.com/homework-help/computer-science/naive-string-
matching-algorithm.aspx

More Related Content

What's hot (20)

String matching Algorithm by Foysal
String matching Algorithm by FoysalString matching Algorithm by Foysal
String matching Algorithm by Foysal
Foysal Mahmud
 
String matching algorithm
String matching algorithmString matching algorithm
String matching algorithm
Alokeparna Choudhury
 
Pattern matching programs
Pattern matching programsPattern matching programs
Pattern matching programs
akruthi k
 
chapter 1
chapter 1chapter 1
chapter 1
yatheesha
 
String matching algorithms
String matching algorithmsString matching algorithms
String matching algorithms
Mahdi Esmailoghli
 
Diffiehellman
DiffiehellmanDiffiehellman
Diffiehellman
chenlahero
 
3.1 bubble sort
3.1 bubble sort3.1 bubble sort
3.1 bubble sort
Krish_ver2
 
Alpha beta
Alpha betaAlpha beta
Alpha beta
sabairshad4
 
Number theory and cryptography
Number theory and cryptographyNumber theory and cryptography
Number theory and cryptography
Yasser Ali
 
String operation
String operationString operation
String operation
Shakila Mahjabin
 
Divide and conquer - Quick sort
Divide and conquer - Quick sortDivide and conquer - Quick sort
Divide and conquer - Quick sort
Madhu Bala
 
Python NumPy Tutorial | NumPy Array | Edureka
Python NumPy Tutorial | NumPy Array | EdurekaPython NumPy Tutorial | NumPy Array | Edureka
Python NumPy Tutorial | NumPy Array | Edureka
Edureka!
 
Python- Regular expression
Python- Regular expressionPython- Regular expression
Python- Regular expression
Megha V
 
String matching, naive,
String matching, naive,String matching, naive,
String matching, naive,
Amit Kumar Rathi
 
Chapter 22 Finite Field
Chapter 22 Finite FieldChapter 22 Finite Field
Chapter 22 Finite Field
Tony Cervera Jr.
 
Intro To Machine Learning in Python
Intro To Machine Learning in PythonIntro To Machine Learning in Python
Intro To Machine Learning in Python
Russel Mahmud
 
Rabin karp string matcher
Rabin karp string matcherRabin karp string matcher
Rabin karp string matcher
Amit Kumar Rathi
 
Divide and conquer
Divide and conquerDivide and conquer
Divide and conquer
Dr Shashikant Athawale
 
Application Of Graph Data Structure
Application Of Graph Data StructureApplication Of Graph Data Structure
Application Of Graph Data Structure
Gaurang Dobariya
 
Python GUI Programming
Python GUI ProgrammingPython GUI Programming
Python GUI Programming
RTS Tech
 
String matching Algorithm by Foysal
String matching Algorithm by FoysalString matching Algorithm by Foysal
String matching Algorithm by Foysal
Foysal Mahmud
 
Pattern matching programs
Pattern matching programsPattern matching programs
Pattern matching programs
akruthi k
 
3.1 bubble sort
3.1 bubble sort3.1 bubble sort
3.1 bubble sort
Krish_ver2
 
Number theory and cryptography
Number theory and cryptographyNumber theory and cryptography
Number theory and cryptography
Yasser Ali
 
Divide and conquer - Quick sort
Divide and conquer - Quick sortDivide and conquer - Quick sort
Divide and conquer - Quick sort
Madhu Bala
 
Python NumPy Tutorial | NumPy Array | Edureka
Python NumPy Tutorial | NumPy Array | EdurekaPython NumPy Tutorial | NumPy Array | Edureka
Python NumPy Tutorial | NumPy Array | Edureka
Edureka!
 
Python- Regular expression
Python- Regular expressionPython- Regular expression
Python- Regular expression
Megha V
 
Intro To Machine Learning in Python
Intro To Machine Learning in PythonIntro To Machine Learning in Python
Intro To Machine Learning in Python
Russel Mahmud
 
Application Of Graph Data Structure
Application Of Graph Data StructureApplication Of Graph Data Structure
Application Of Graph Data Structure
Gaurang Dobariya
 
Python GUI Programming
Python GUI ProgrammingPython GUI Programming
Python GUI Programming
RTS Tech
 

Viewers also liked (20)

String matching algorithms
String matching algorithmsString matching algorithms
String matching algorithms
Ashikapokiya12345
 
Rabin karp string matching algorithm
Rabin karp string matching algorithmRabin karp string matching algorithm
Rabin karp string matching algorithm
Gajanand Sharma
 
Rabin Karp - String Matching Algorithm
Rabin Karp - String Matching AlgorithmRabin Karp - String Matching Algorithm
Rabin Karp - String Matching Algorithm
Syed Owais Ali Chishti
 
Pattern matching
Pattern matchingPattern matching
Pattern matching
shravs_188
 
Boyre Moore Algorithm | Computer Science
Boyre Moore Algorithm | Computer ScienceBoyre Moore Algorithm | Computer Science
Boyre Moore Algorithm | Computer Science
Transweb Global Inc
 
Algoritmo de Rabin-Karp
Algoritmo de Rabin-KarpAlgoritmo de Rabin-Karp
Algoritmo de Rabin-Karp
Lorran Pegoretti
 
06. string matching
06. string matching06. string matching
06. string matching
Onkar Nath Sharma
 
String Matching Finite Automata & KMP Algorithm.
String Matching Finite Automata & KMP Algorithm.String Matching Finite Automata & KMP Algorithm.
String Matching Finite Automata & KMP Algorithm.
Malek Sumaiya
 
KMP Pattern Matching algorithm
KMP Pattern Matching algorithmKMP Pattern Matching algorithm
KMP Pattern Matching algorithm
Kamal Nayan
 
Boyer–Moore string search algorithm
Boyer–Moore string search algorithmBoyer–Moore string search algorithm
Boyer–Moore string search algorithm
Hamid Shekarforoush
 
Boyer more algorithm
Boyer more algorithmBoyer more algorithm
Boyer more algorithm
Kritika Purohit
 
25 String Matching
25 String Matching25 String Matching
25 String Matching
Andres Mendez-Vazquez
 
Pascal's Triangle
Pascal's TrianglePascal's Triangle
Pascal's Triangle
vbhunt
 
IMPLEMENTATION OF DIFFERENT PATTERN RECOGNITION ALGORITHM
IMPLEMENTATION OF DIFFERENT PATTERN RECOGNITION  ALGORITHM  IMPLEMENTATION OF DIFFERENT PATTERN RECOGNITION  ALGORITHM
IMPLEMENTATION OF DIFFERENT PATTERN RECOGNITION ALGORITHM
NETAJI SUBHASH ENGINEERING COLLEGE , KOLKATA
 
Visualizing the pascal’s triangle
Visualizing the pascal’s triangleVisualizing the pascal’s triangle
Visualizing the pascal’s triangle
Parth Dhar
 
Pascal's triangle
Pascal's triangle Pascal's triangle
Pascal's triangle
arnav1230
 
Pascal Triangle
Pascal TrianglePascal Triangle
Pascal Triangle
nur fara
 
Pattern matching in ds by m anoj vasava=mca
Pattern matching in ds by m anoj vasava=mcaPattern matching in ds by m anoj vasava=mca
Pattern matching in ds by m anoj vasava=mca
Manoj_vasava
 
Pascal’s Triangle
Pascal’s TrianglePascal’s Triangle
Pascal’s Triangle
Clayton Rainsberg
 
The Floyd–Warshall algorithm
The Floyd–Warshall algorithmThe Floyd–Warshall algorithm
The Floyd–Warshall algorithm
José Juan Herrera
 
Rabin karp string matching algorithm
Rabin karp string matching algorithmRabin karp string matching algorithm
Rabin karp string matching algorithm
Gajanand Sharma
 
Rabin Karp - String Matching Algorithm
Rabin Karp - String Matching AlgorithmRabin Karp - String Matching Algorithm
Rabin Karp - String Matching Algorithm
Syed Owais Ali Chishti
 
Pattern matching
Pattern matchingPattern matching
Pattern matching
shravs_188
 
Boyre Moore Algorithm | Computer Science
Boyre Moore Algorithm | Computer ScienceBoyre Moore Algorithm | Computer Science
Boyre Moore Algorithm | Computer Science
Transweb Global Inc
 
String Matching Finite Automata & KMP Algorithm.
String Matching Finite Automata & KMP Algorithm.String Matching Finite Automata & KMP Algorithm.
String Matching Finite Automata & KMP Algorithm.
Malek Sumaiya
 
KMP Pattern Matching algorithm
KMP Pattern Matching algorithmKMP Pattern Matching algorithm
KMP Pattern Matching algorithm
Kamal Nayan
 
Boyer–Moore string search algorithm
Boyer–Moore string search algorithmBoyer–Moore string search algorithm
Boyer–Moore string search algorithm
Hamid Shekarforoush
 
Pascal's Triangle
Pascal's TrianglePascal's Triangle
Pascal's Triangle
vbhunt
 
Visualizing the pascal’s triangle
Visualizing the pascal’s triangleVisualizing the pascal’s triangle
Visualizing the pascal’s triangle
Parth Dhar
 
Pascal's triangle
Pascal's triangle Pascal's triangle
Pascal's triangle
arnav1230
 
Pascal Triangle
Pascal TrianglePascal Triangle
Pascal Triangle
nur fara
 
Pattern matching in ds by m anoj vasava=mca
Pattern matching in ds by m anoj vasava=mcaPattern matching in ds by m anoj vasava=mca
Pattern matching in ds by m anoj vasava=mca
Manoj_vasava
 
Ad

Similar to Naive String Matching Algorithm | Computer Science (20)

Arif hussain algo prestention
Arif hussain algo prestentionArif hussain algo prestention
Arif hussain algo prestention
Arif Hussain
 
Rabin-Karp (2).ppt
Rabin-Karp (2).pptRabin-Karp (2).ppt
Rabin-Karp (2).ppt
UmeshThoriya
 
4 report format
4 report format4 report format
4 report format
Ashikapokiya12345
 
4 report format
4 report format4 report format
4 report format
Ashikapokiya12345
 
Maxflowmincut boyer-moore algorithmMaxflowmincut boyer-moore algorithm
Maxflowmincut boyer-moore algorithmMaxflowmincut boyer-moore algorithmMaxflowmincut boyer-moore algorithmMaxflowmincut boyer-moore algorithm
Maxflowmincut boyer-moore algorithmMaxflowmincut boyer-moore algorithm
SangaBalaNarsimha
 
Boyer moore algorithm
Boyer moore algorithmBoyer moore algorithm
Boyer moore algorithm
AYESHA JAVED
 
An Application of Pattern matching for Motif Identification
An Application of Pattern matching for Motif IdentificationAn Application of Pattern matching for Motif Identification
An Application of Pattern matching for Motif Identification
CSCJournals
 
unit-4 regular expression.pptx
unit-4 regular expression.pptxunit-4 regular expression.pptx
unit-4 regular expression.pptx
PadreBhoj
 
Modified Rabin Karp
Modified Rabin KarpModified Rabin Karp
Modified Rabin Karp
Garima Singh
 
Advance algorithms in master of technology
Advance algorithms in master of technologyAdvance algorithms in master of technology
Advance algorithms in master of technology
ManjunathaOk
 
String Match | Computer Science
String Match | Computer ScienceString Match | Computer Science
String Match | Computer Science
Transweb Global Inc
 
Extending Boyer-Moore Algorithm to an Abstract String Matching Problem
Extending Boyer-Moore Algorithm to an Abstract String Matching ProblemExtending Boyer-Moore Algorithm to an Abstract String Matching Problem
Extending Boyer-Moore Algorithm to an Abstract String Matching Problem
Liwei Ren任力偉
 
An Index Based K-Partitions Multiple Pattern Matching Algorithm
An Index Based K-Partitions Multiple Pattern Matching AlgorithmAn Index Based K-Partitions Multiple Pattern Matching Algorithm
An Index Based K-Partitions Multiple Pattern Matching Algorithm
IDES Editor
 
PPS_Unit 4.ppt
PPS_Unit 4.pptPPS_Unit 4.ppt
PPS_Unit 4.ppt
KundanBhatkar
 
regular-expression.pdf
regular-expression.pdfregular-expression.pdf
regular-expression.pdf
DarellMuchoko
 
String Matching Algorithms: Naive, KMP, Rabin-Karp
String Matching Algorithms: Naive, KMP, Rabin-KarpString Matching Algorithms: Naive, KMP, Rabin-Karp
String Matching Algorithms: Naive, KMP, Rabin-Karp
NAtional Institute of TEchnology Rourkela , Galgotias University
 
Python Strings Methods
Python Strings MethodsPython Strings Methods
Python Strings Methods
Mr Examples
 
Adv. python regular expression by Rj
Adv. python regular expression by RjAdv. python regular expression by Rj
Adv. python regular expression by Rj
Shree M.L.Kakadiya MCA mahila college, Amreli
 
Python (regular expression)
Python (regular expression)Python (regular expression)
Python (regular expression)
Chirag Shetty
 
String Matching algorithm String Matching algorithm String Matching algorithm
String Matching algorithm String Matching algorithm String Matching algorithmString Matching algorithm String Matching algorithm String Matching algorithm
String Matching algorithm String Matching algorithm String Matching algorithm
praweenkumarsahu9
 
Arif hussain algo prestention
Arif hussain algo prestentionArif hussain algo prestention
Arif hussain algo prestention
Arif Hussain
 
Rabin-Karp (2).ppt
Rabin-Karp (2).pptRabin-Karp (2).ppt
Rabin-Karp (2).ppt
UmeshThoriya
 
Maxflowmincut boyer-moore algorithmMaxflowmincut boyer-moore algorithm
Maxflowmincut boyer-moore algorithmMaxflowmincut boyer-moore algorithmMaxflowmincut boyer-moore algorithmMaxflowmincut boyer-moore algorithm
Maxflowmincut boyer-moore algorithmMaxflowmincut boyer-moore algorithm
SangaBalaNarsimha
 
Boyer moore algorithm
Boyer moore algorithmBoyer moore algorithm
Boyer moore algorithm
AYESHA JAVED
 
An Application of Pattern matching for Motif Identification
An Application of Pattern matching for Motif IdentificationAn Application of Pattern matching for Motif Identification
An Application of Pattern matching for Motif Identification
CSCJournals
 
unit-4 regular expression.pptx
unit-4 regular expression.pptxunit-4 regular expression.pptx
unit-4 regular expression.pptx
PadreBhoj
 
Modified Rabin Karp
Modified Rabin KarpModified Rabin Karp
Modified Rabin Karp
Garima Singh
 
Advance algorithms in master of technology
Advance algorithms in master of technologyAdvance algorithms in master of technology
Advance algorithms in master of technology
ManjunathaOk
 
Extending Boyer-Moore Algorithm to an Abstract String Matching Problem
Extending Boyer-Moore Algorithm to an Abstract String Matching ProblemExtending Boyer-Moore Algorithm to an Abstract String Matching Problem
Extending Boyer-Moore Algorithm to an Abstract String Matching Problem
Liwei Ren任力偉
 
An Index Based K-Partitions Multiple Pattern Matching Algorithm
An Index Based K-Partitions Multiple Pattern Matching AlgorithmAn Index Based K-Partitions Multiple Pattern Matching Algorithm
An Index Based K-Partitions Multiple Pattern Matching Algorithm
IDES Editor
 
regular-expression.pdf
regular-expression.pdfregular-expression.pdf
regular-expression.pdf
DarellMuchoko
 
Python Strings Methods
Python Strings MethodsPython Strings Methods
Python Strings Methods
Mr Examples
 
Python (regular expression)
Python (regular expression)Python (regular expression)
Python (regular expression)
Chirag Shetty
 
String Matching algorithm String Matching algorithm String Matching algorithm
String Matching algorithm String Matching algorithm String Matching algorithmString Matching algorithm String Matching algorithm String Matching algorithm
String Matching algorithm String Matching algorithm String Matching algorithm
praweenkumarsahu9
 
Ad

More from Transweb Global Inc (20)

Resultant of Coplanar Parallel Forces | Mechanical Engineering
Resultant of Coplanar Parallel Forces | Mechanical EngineeringResultant of Coplanar Parallel Forces | Mechanical Engineering
Resultant of Coplanar Parallel Forces | Mechanical Engineering
Transweb Global Inc
 
The Centroidal Axis | Mechanical Engineering
The Centroidal Axis | Mechanical EngineeringThe Centroidal Axis | Mechanical Engineering
The Centroidal Axis | Mechanical Engineering
Transweb Global Inc
 
System Of Coplanar Forces | Mechanical Engineering
System Of Coplanar Forces | Mechanical EngineeringSystem Of Coplanar Forces | Mechanical Engineering
System Of Coplanar Forces | Mechanical Engineering
Transweb Global Inc
 
Resultant of Two Unlike and Unequal Parallel Forces | Mechanical Engineering
Resultant of Two Unlike and Unequal Parallel Forces | Mechanical EngineeringResultant of Two Unlike and Unequal Parallel Forces | Mechanical Engineering
Resultant of Two Unlike and Unequal Parallel Forces | Mechanical Engineering
Transweb Global Inc
 
SFD Load Diagram Examples | Mechanical Engineering
SFD Load Diagram Examples | Mechanical EngineeringSFD Load Diagram Examples | Mechanical Engineering
SFD Load Diagram Examples | Mechanical Engineering
Transweb Global Inc
 
Principle Of Transmissibility | Mechanical Engineering
Principle Of Transmissibility | Mechanical EngineeringPrinciple Of Transmissibility | Mechanical Engineering
Principle Of Transmissibility | Mechanical Engineering
Transweb Global Inc
 
Law Of Polygon | Mechanical Engineering
Law Of Polygon | Mechanical EngineeringLaw Of Polygon | Mechanical Engineering
Law Of Polygon | Mechanical Engineering
Transweb Global Inc
 
Similarities between Leadership and Management | Management
Similarities between Leadership and Management | ManagementSimilarities between Leadership and Management | Management
Similarities between Leadership and Management | Management
Transweb Global Inc
 
Ranked Positional Weight Method | Management
Ranked Positional Weight Method | ManagementRanked Positional Weight Method | Management
Ranked Positional Weight Method | Management
Transweb Global Inc
 
Business Intelligence And Business Analytics | Management
Business Intelligence And Business Analytics | ManagementBusiness Intelligence And Business Analytics | Management
Business Intelligence And Business Analytics | Management
Transweb Global Inc
 
ABC Cost Hierarchy | Management
ABC Cost Hierarchy | ManagementABC Cost Hierarchy | Management
ABC Cost Hierarchy | Management
Transweb Global Inc
 
Speed To Market | Management
Speed To Market | ManagementSpeed To Market | Management
Speed To Market | Management
Transweb Global Inc
 
Managerial Hubris | Finance
Managerial Hubris | FinanceManagerial Hubris | Finance
Managerial Hubris | Finance
Transweb Global Inc
 
Conductance | Electrical Engineering
Conductance | Electrical EngineeringConductance | Electrical Engineering
Conductance | Electrical Engineering
Transweb Global Inc
 
Advantages and Disadvantages of Digital Electronics | Electrical Engineering
Advantages and Disadvantages of Digital Electronics | Electrical EngineeringAdvantages and Disadvantages of Digital Electronics | Electrical Engineering
Advantages and Disadvantages of Digital Electronics | Electrical Engineering
Transweb Global Inc
 
Stabilization Of Operating Point | Electrical Engineering
Stabilization Of Operating Point | Electrical EngineeringStabilization Of Operating Point | Electrical Engineering
Stabilization Of Operating Point | Electrical Engineering
Transweb Global Inc
 
Offer Curves | Economics
Offer Curves | EconomicsOffer Curves | Economics
Offer Curves | Economics
Transweb Global Inc
 
Fixed Exchange Rate | Economics
Fixed Exchange Rate | EconomicsFixed Exchange Rate | Economics
Fixed Exchange Rate | Economics
Transweb Global Inc
 
Computer Architecture | Computer Science
Computer Architecture | Computer ScienceComputer Architecture | Computer Science
Computer Architecture | Computer Science
Transweb Global Inc
 
Compilers Computer Program | Computer Science
Compilers Computer Program | Computer ScienceCompilers Computer Program | Computer Science
Compilers Computer Program | Computer Science
Transweb Global Inc
 
Resultant of Coplanar Parallel Forces | Mechanical Engineering
Resultant of Coplanar Parallel Forces | Mechanical EngineeringResultant of Coplanar Parallel Forces | Mechanical Engineering
Resultant of Coplanar Parallel Forces | Mechanical Engineering
Transweb Global Inc
 
The Centroidal Axis | Mechanical Engineering
The Centroidal Axis | Mechanical EngineeringThe Centroidal Axis | Mechanical Engineering
The Centroidal Axis | Mechanical Engineering
Transweb Global Inc
 
System Of Coplanar Forces | Mechanical Engineering
System Of Coplanar Forces | Mechanical EngineeringSystem Of Coplanar Forces | Mechanical Engineering
System Of Coplanar Forces | Mechanical Engineering
Transweb Global Inc
 
Resultant of Two Unlike and Unequal Parallel Forces | Mechanical Engineering
Resultant of Two Unlike and Unequal Parallel Forces | Mechanical EngineeringResultant of Two Unlike and Unequal Parallel Forces | Mechanical Engineering
Resultant of Two Unlike and Unequal Parallel Forces | Mechanical Engineering
Transweb Global Inc
 
SFD Load Diagram Examples | Mechanical Engineering
SFD Load Diagram Examples | Mechanical EngineeringSFD Load Diagram Examples | Mechanical Engineering
SFD Load Diagram Examples | Mechanical Engineering
Transweb Global Inc
 
Principle Of Transmissibility | Mechanical Engineering
Principle Of Transmissibility | Mechanical EngineeringPrinciple Of Transmissibility | Mechanical Engineering
Principle Of Transmissibility | Mechanical Engineering
Transweb Global Inc
 
Law Of Polygon | Mechanical Engineering
Law Of Polygon | Mechanical EngineeringLaw Of Polygon | Mechanical Engineering
Law Of Polygon | Mechanical Engineering
Transweb Global Inc
 
Similarities between Leadership and Management | Management
Similarities between Leadership and Management | ManagementSimilarities between Leadership and Management | Management
Similarities between Leadership and Management | Management
Transweb Global Inc
 
Ranked Positional Weight Method | Management
Ranked Positional Weight Method | ManagementRanked Positional Weight Method | Management
Ranked Positional Weight Method | Management
Transweb Global Inc
 
Business Intelligence And Business Analytics | Management
Business Intelligence And Business Analytics | ManagementBusiness Intelligence And Business Analytics | Management
Business Intelligence And Business Analytics | Management
Transweb Global Inc
 
Conductance | Electrical Engineering
Conductance | Electrical EngineeringConductance | Electrical Engineering
Conductance | Electrical Engineering
Transweb Global Inc
 
Advantages and Disadvantages of Digital Electronics | Electrical Engineering
Advantages and Disadvantages of Digital Electronics | Electrical EngineeringAdvantages and Disadvantages of Digital Electronics | Electrical Engineering
Advantages and Disadvantages of Digital Electronics | Electrical Engineering
Transweb Global Inc
 
Stabilization Of Operating Point | Electrical Engineering
Stabilization Of Operating Point | Electrical EngineeringStabilization Of Operating Point | Electrical Engineering
Stabilization Of Operating Point | Electrical Engineering
Transweb Global Inc
 
Computer Architecture | Computer Science
Computer Architecture | Computer ScienceComputer Architecture | Computer Science
Computer Architecture | Computer Science
Transweb Global Inc
 
Compilers Computer Program | Computer Science
Compilers Computer Program | Computer ScienceCompilers Computer Program | Computer Science
Compilers Computer Program | Computer Science
Transweb Global Inc
 

Recently uploaded (20)

How to Manage & Create a New Department in Odoo 18 Employee
How to Manage & Create a New Department in Odoo 18 EmployeeHow to Manage & Create a New Department in Odoo 18 Employee
How to Manage & Create a New Department in Odoo 18 Employee
Celine George
 
Artificial intelligence Presented by JM.
Artificial intelligence Presented by JM.Artificial intelligence Presented by JM.
Artificial intelligence Presented by JM.
jmansha170
 
THERAPEUTIC COMMUNICATION included definition, characteristics, nurse patient...
THERAPEUTIC COMMUNICATION included definition, characteristics, nurse patient...THERAPEUTIC COMMUNICATION included definition, characteristics, nurse patient...
THERAPEUTIC COMMUNICATION included definition, characteristics, nurse patient...
parmarjuli1412
 
MATERI PPT TOPIK 1 LANDASAN FILOSOFIS PENDIDIKAN
MATERI PPT TOPIK 1 LANDASAN FILOSOFIS PENDIDIKANMATERI PPT TOPIK 1 LANDASAN FILOSOFIS PENDIDIKAN
MATERI PPT TOPIK 1 LANDASAN FILOSOFIS PENDIDIKAN
aditya23173
 
BUSINESS QUIZ PRELIMS | QUIZ CLUB OF PSGCAS | 9 SEPTEMBER 2024
BUSINESS QUIZ PRELIMS | QUIZ CLUB OF PSGCAS | 9 SEPTEMBER 2024BUSINESS QUIZ PRELIMS | QUIZ CLUB OF PSGCAS | 9 SEPTEMBER 2024
BUSINESS QUIZ PRELIMS | QUIZ CLUB OF PSGCAS | 9 SEPTEMBER 2024
Quiz Club of PSG College of Arts & Science
 
Analysis of Quantitative Data Parametric and non-parametric tests.pptx
Analysis of Quantitative Data Parametric and non-parametric tests.pptxAnalysis of Quantitative Data Parametric and non-parametric tests.pptx
Analysis of Quantitative Data Parametric and non-parametric tests.pptx
Shrutidhara2
 
Energy Balances Of Oecd Countries 2011 Iea Statistics 1st Edition Oecd
Energy Balances Of Oecd Countries 2011 Iea Statistics 1st Edition OecdEnergy Balances Of Oecd Countries 2011 Iea Statistics 1st Edition Oecd
Energy Balances Of Oecd Countries 2011 Iea Statistics 1st Edition Oecd
razelitouali
 
How to Create Quotation Templates Sequence in Odoo 18 Sales
How to Create Quotation Templates Sequence in Odoo 18 SalesHow to Create Quotation Templates Sequence in Odoo 18 Sales
How to Create Quotation Templates Sequence in Odoo 18 Sales
Celine George
 
Unit- 4 Biostatistics & Research Methodology.pdf
Unit- 4 Biostatistics & Research Methodology.pdfUnit- 4 Biostatistics & Research Methodology.pdf
Unit- 4 Biostatistics & Research Methodology.pdf
KRUTIKA CHANNE
 
Optimization technique in pharmaceutical product development.pptx
Optimization technique in pharmaceutical product development.pptxOptimization technique in pharmaceutical product development.pptx
Optimization technique in pharmaceutical product development.pptx
UrmiPrajapati3
 
Webcrawler_Mule_AIChain_MuleSoft_Meetup_Hyderabad
Webcrawler_Mule_AIChain_MuleSoft_Meetup_HyderabadWebcrawler_Mule_AIChain_MuleSoft_Meetup_Hyderabad
Webcrawler_Mule_AIChain_MuleSoft_Meetup_Hyderabad
Veera Pallapu
 
june 10 2025 ppt for madden on art science is over.pptx
june 10 2025 ppt for madden on art science is over.pptxjune 10 2025 ppt for madden on art science is over.pptx
june 10 2025 ppt for madden on art science is over.pptx
roger malina
 
IDF 30min presentation - December 2, 2024.pptx
IDF 30min presentation - December 2, 2024.pptxIDF 30min presentation - December 2, 2024.pptx
IDF 30min presentation - December 2, 2024.pptx
ArneeAgligar
 
Different pricelists for different shops in odoo Point of Sale in Odoo 17
Different pricelists for different shops in odoo Point of Sale in Odoo 17Different pricelists for different shops in odoo Point of Sale in Odoo 17
Different pricelists for different shops in odoo Point of Sale in Odoo 17
Celine George
 
How to Manage Upselling of Subscriptions in Odoo 18
How to Manage Upselling of Subscriptions in Odoo 18How to Manage Upselling of Subscriptions in Odoo 18
How to Manage Upselling of Subscriptions in Odoo 18
Celine George
 
Nice Dream.pdf /
Nice Dream.pdf                              /Nice Dream.pdf                              /
Nice Dream.pdf /
ErinUsher3
 
Ray Dalio How Countries go Broke the Big Cycle
Ray Dalio How Countries go Broke the Big CycleRay Dalio How Countries go Broke the Big Cycle
Ray Dalio How Countries go Broke the Big Cycle
Dadang Solihin
 
Adam Grant: Transforming Work Culture Through Organizational Psychology
Adam Grant: Transforming Work Culture Through Organizational PsychologyAdam Grant: Transforming Work Culture Through Organizational Psychology
Adam Grant: Transforming Work Culture Through Organizational Psychology
Prachi Shah
 
Parenting Teens: Supporting Trust, resilience and independence
Parenting Teens: Supporting Trust, resilience and independenceParenting Teens: Supporting Trust, resilience and independence
Parenting Teens: Supporting Trust, resilience and independence
Pooky Knightsmith
 
How to Configure Vendor Management in Lunch App of Odoo 18
How to Configure Vendor Management in Lunch App of Odoo 18How to Configure Vendor Management in Lunch App of Odoo 18
How to Configure Vendor Management in Lunch App of Odoo 18
Celine George
 
How to Manage & Create a New Department in Odoo 18 Employee
How to Manage & Create a New Department in Odoo 18 EmployeeHow to Manage & Create a New Department in Odoo 18 Employee
How to Manage & Create a New Department in Odoo 18 Employee
Celine George
 
Artificial intelligence Presented by JM.
Artificial intelligence Presented by JM.Artificial intelligence Presented by JM.
Artificial intelligence Presented by JM.
jmansha170
 
THERAPEUTIC COMMUNICATION included definition, characteristics, nurse patient...
THERAPEUTIC COMMUNICATION included definition, characteristics, nurse patient...THERAPEUTIC COMMUNICATION included definition, characteristics, nurse patient...
THERAPEUTIC COMMUNICATION included definition, characteristics, nurse patient...
parmarjuli1412
 
MATERI PPT TOPIK 1 LANDASAN FILOSOFIS PENDIDIKAN
MATERI PPT TOPIK 1 LANDASAN FILOSOFIS PENDIDIKANMATERI PPT TOPIK 1 LANDASAN FILOSOFIS PENDIDIKAN
MATERI PPT TOPIK 1 LANDASAN FILOSOFIS PENDIDIKAN
aditya23173
 
Analysis of Quantitative Data Parametric and non-parametric tests.pptx
Analysis of Quantitative Data Parametric and non-parametric tests.pptxAnalysis of Quantitative Data Parametric and non-parametric tests.pptx
Analysis of Quantitative Data Parametric and non-parametric tests.pptx
Shrutidhara2
 
Energy Balances Of Oecd Countries 2011 Iea Statistics 1st Edition Oecd
Energy Balances Of Oecd Countries 2011 Iea Statistics 1st Edition OecdEnergy Balances Of Oecd Countries 2011 Iea Statistics 1st Edition Oecd
Energy Balances Of Oecd Countries 2011 Iea Statistics 1st Edition Oecd
razelitouali
 
How to Create Quotation Templates Sequence in Odoo 18 Sales
How to Create Quotation Templates Sequence in Odoo 18 SalesHow to Create Quotation Templates Sequence in Odoo 18 Sales
How to Create Quotation Templates Sequence in Odoo 18 Sales
Celine George
 
Unit- 4 Biostatistics & Research Methodology.pdf
Unit- 4 Biostatistics & Research Methodology.pdfUnit- 4 Biostatistics & Research Methodology.pdf
Unit- 4 Biostatistics & Research Methodology.pdf
KRUTIKA CHANNE
 
Optimization technique in pharmaceutical product development.pptx
Optimization technique in pharmaceutical product development.pptxOptimization technique in pharmaceutical product development.pptx
Optimization technique in pharmaceutical product development.pptx
UrmiPrajapati3
 
Webcrawler_Mule_AIChain_MuleSoft_Meetup_Hyderabad
Webcrawler_Mule_AIChain_MuleSoft_Meetup_HyderabadWebcrawler_Mule_AIChain_MuleSoft_Meetup_Hyderabad
Webcrawler_Mule_AIChain_MuleSoft_Meetup_Hyderabad
Veera Pallapu
 
june 10 2025 ppt for madden on art science is over.pptx
june 10 2025 ppt for madden on art science is over.pptxjune 10 2025 ppt for madden on art science is over.pptx
june 10 2025 ppt for madden on art science is over.pptx
roger malina
 
IDF 30min presentation - December 2, 2024.pptx
IDF 30min presentation - December 2, 2024.pptxIDF 30min presentation - December 2, 2024.pptx
IDF 30min presentation - December 2, 2024.pptx
ArneeAgligar
 
Different pricelists for different shops in odoo Point of Sale in Odoo 17
Different pricelists for different shops in odoo Point of Sale in Odoo 17Different pricelists for different shops in odoo Point of Sale in Odoo 17
Different pricelists for different shops in odoo Point of Sale in Odoo 17
Celine George
 
How to Manage Upselling of Subscriptions in Odoo 18
How to Manage Upselling of Subscriptions in Odoo 18How to Manage Upselling of Subscriptions in Odoo 18
How to Manage Upselling of Subscriptions in Odoo 18
Celine George
 
Nice Dream.pdf /
Nice Dream.pdf                              /Nice Dream.pdf                              /
Nice Dream.pdf /
ErinUsher3
 
Ray Dalio How Countries go Broke the Big Cycle
Ray Dalio How Countries go Broke the Big CycleRay Dalio How Countries go Broke the Big Cycle
Ray Dalio How Countries go Broke the Big Cycle
Dadang Solihin
 
Adam Grant: Transforming Work Culture Through Organizational Psychology
Adam Grant: Transforming Work Culture Through Organizational PsychologyAdam Grant: Transforming Work Culture Through Organizational Psychology
Adam Grant: Transforming Work Culture Through Organizational Psychology
Prachi Shah
 
Parenting Teens: Supporting Trust, resilience and independence
Parenting Teens: Supporting Trust, resilience and independenceParenting Teens: Supporting Trust, resilience and independence
Parenting Teens: Supporting Trust, resilience and independence
Pooky Knightsmith
 
How to Configure Vendor Management in Lunch App of Odoo 18
How to Configure Vendor Management in Lunch App of Odoo 18How to Configure Vendor Management in Lunch App of Odoo 18
How to Configure Vendor Management in Lunch App of Odoo 18
Celine George
 

Naive String Matching Algorithm | Computer Science

  • 2.  Pattern slides over text one by one and tests for a match.  When match found return the starting index number from where the pattern is found in the text  Slide by 1 again to check for subsequent matches of the pattern in the text.
  • 4. Compare 1 to 1. Match is found !!! Slide the pattern by one then 3 would be compared with 1. No match found!!! Again the pattern will slide by one until a continuous match is found. Now the comparison would be as follows: Match is found !!! String search will return index number 2.
  • 6. Naïve string matching algorithm Pseudocode: { n = length(text); m = length(patter,); limit = n-m; j = 0, k = 0; array_Shift[]; for(i = 0; i <= limit; i++) { j = 0; k = i; for(j = 0; j <= m AND str[k] == pat[j]; j++) k++; if(j >= m) Add i to array_Shift; } return array_Shift; }
  • 7. Hey Friends, This was just a summary on Naive String Matching AlgorithmNaive String Matching Algorithm. For more detailed information on this topic, please type the link given below or copy it from the description of this PPT and open it in a new browser window. http://www.transtutors.com/homework-help/computer-science/naive-string- matching-algorithm.aspx