Introduction to finite deterministic automata
1 - Deterministic finite automaton 2 - Language reconized by automaton 3 - Word recognition algorithm by automaton Start Algorithmq←q₀i←1While (i≤n-1) doq←δ(q,u_{i})i←i+1End whileIf q∈F thenDisplay "The word u is accepted"ElseDisplay…
Android app to avoid traffic accidents : In-Traffic Response
Samsung has launched a new application called "In-Traffic Response" to avoid traffic accidents caused by the use of a mobile phone while driving.According to the technical site "theverge" that Samsung…
How to create a Sticker in a Facebook for Android phones?
After it was exclusive to iOS phones, Android phone users can now insert a sticker into a publication on the Facebook app. Steps: 1. Open the Facebook application.2 - Then…
The Java conditionals structures & loops
1 - Conditional structure If & else else in Java In Java, an if statement is a conditional statement that executes a set of statements according to a condition whether…
Algebraic Grammar
1 - Concept of Grammar 2 - Language generated by grammar Younes Derfoufi
A simple trick to speed up your Android smartphone
Unlike iOS, Android devices offer many options to customize its terminal. One of them allows to accelerate the animations of its smartphone. Despite the fact that you own the latest…
String Class and its methods
1 - Java strings class A string is any sequence of contiguous characters, for example, "hello" is a string of length 5 (length of string = Number of characters in…