Posts by DaviAragao • 2,912 points
56 posts
-
1
votes2
answers2037
viewsA: Insert widget into binary search tree
You need to do a point to your element novi. It doesn’t print anything because you allocate a value in memory but doesn’t add it to your tree.
canswered DaviAragao 2,912 -
2
votes4
answers29520
viewsA: Print strings in alphabetical order
I’m going to post a possible answer, it’s a simple algorithm that sorts words using selectSort, qtd is the amount of words and tam is the size of the words. # include<stdio.h> const int qtd =…
-
2
votes1
answer322
viewsQ: Call Jquery function in HTML created via Javascript
My main.js and my html. $(function() { /*var ipControlador; $(function carregaFlows() { $.getScript("indexFunction.js", function() { ipControlador = ip; alert(ipControlador); }); });*/…
-
1
votes1
answer342
viewsQ: Problem when making AJAX DELETE request by sending JSON
When making a request DELETE a url that does not support OPTIONS browser returns me: 405 Method Not Allowed Is there any way to prevent, in my Javascript code, the browser to send a pre-request…
-
2
votes1
answer242
viewsQ: DELETE Ajax request on a Floodlight SDN controller
I have a function in my Javascript that makes an Ajax request to the REST interface of a Floodlight controller. function excluir(nome) { var jsonExclui = ("{" + '"name": "'+nome+'" }');…
-
1
votes1
answer249
viewsQ: Calling function from an event
I have a link that is generated via Javascript. <a href="#" onclick="excluir()">Excluir</a> I have a function in my . js. function excluir(){alert("oi");} By pressing on the link I get…