Posts by Diego H. Seto • 89 points
5 posts
-
1
votes1
answer70
viewsQ: Problem with repeated number removal algorithm on doubly chained list
Could someone help me with the following code? void removeRepetidos(Lista *l) { Elemento *aux = (*l); Elemento *aux2; Elemento *aux3; while(aux!=NULL) { aux2 = aux->prox; while(aux2 != NULL) {…
-
1
votes1
answer66
viewsQ: Doubt regarding dimensioning methods in a Frame
What is the difference between the method setSize() and the method setPrefferedSize() in a Frame, and in which situation each one should be used?
-
2
votes1
answer32
viewsQ: Doubt regarding the Dysplasia() and Repaint() methods
What is the function of the methods .dispose() and repaint() using Graphics in Java?
-
2
votes1
answer305
viewsQ: Questions about the Graphics and Graphics2d classes in Java
I am having many doubts regarding the graphic libraries of Java, which are the following: What is the difference between overwriting the method paint(Graphics) or the method…
-
2
votes0
answers193
viewsQ: Foreign key does not work! MYSQL
Good afternoon guys, could someone help me? My Foreign key is not working in a database. I had already made a Foreign key in another database the same way, but now it is not working without apparent…
mysqlasked Diego H. Seto 89