Posts by Mirela Vieira • 171 points
2 posts
-
0
votes1
answer162
viewsQ: inverse java Sort shell
personal I’m having a doubt, how to make descending reverse Sort shell. private static void shellsort(int v[], int n) { int i, j, aux, h = 1; do h = 3 * h + 1; while (h < n); do { h /= 3; for (i…
-
17
votes1
answer270
viewsQ: Error in serial port of Arduin with communication between C and Perl
I have to make a language communicate with the arduino and vice versa. I own the program at C and I have to modify it for this project, the language I have to use is Perl. Follow the code I have:…