The goal of easyalgorithms is to provide the two algorithms euclidean & dijkstra.
You can install the released version of easyalgorithms from CRAN with:
install.packages("easyalgorithms")
This is a basic example which shows you how to solve a common problem:
library(easyalgorithms)
# Call function euclidean
euclidean(x, y)
# Call function dijkstra
dijkstra(graph, init_node)