I know the question was kind of strange, but it's this:
It has a type of notation that is not any language, but it serves as the basis to implement in some language. for example the algorithm of Dijkstra is represented as:
enquanto Q ≠ ø
u ← extrair-mín(Q) //Q ← Q - {u}
para cada v adjacente a u
se d[v] > d[u] + w(u, v) //relaxe (u, v)
então d[v] ← d[u] + w(u, v)
π[v] ← u
Q ← Q ∪ {v}
What is the name of this type of modeling?
I need to represent a code that will be implemented in several languages, by what name should I search?