Posts by Mateus Dias • 93 points
5 posts
-
0
votes1
answer188
viewsA: DIJKSTRA IN JAVA
I was able to solve my problem using a "different" form of the Dijkstra algorithm, with the following function: public static int[] dijkstra2(int adj[][], int origem) { int tamanho = adj.length;…
-
-1
votes1
answer188
viewsQ: DIJKSTRA IN JAVA
Hello. I am implementing a graph and as a smaller path algorithm, I am using DIJKSTRA. The graph indicates the relation of genders and their respective subgenera. The graph is directional,…
-
2
votes1
answer55
viewsQ: Merge date.frames into R
Hello. I have two data.frames. Follow: head(dadosFiltradosBand) rdf.schema.label genre_label 4 The Valentines (rock band) {Pop music|Rock music} 5 The Valentino Orchestra NULL 6 The Valentinos…
rasked Mateus Dias 93 -
4
votes1
answer103
viewsQ: Access data.frame information in R
I’m trying to develop a recommendation system using the R language. Basically, the system is music recommendation collecting information from a file where there is a certain amount of users and for…
rasked Mateus Dias 93 -
2
votes1
answer114
viewsQ: Problem with Recommendation System in R
I’m trying to develop a recommendation system using the R language. Basically, the system is music recommendation collecting information from a file where there is a certain amount of users and for…