Posts by Signatuz • 31 points
6 posts
-
0
votes1
answer97
viewsQ: Error when calculating tree height Trie in C
I need to implement a code that calculates the height of a tree Trie in the C language. To struct of knot is the following: struct trie_cel { char tipo; // 'I': interno / 'P': palavra struct…
-
0
votes0
answers28
viewsQ: Heuristica Admissible in Search A*
Good afternoon, everyone, I have a doubt regarding admissible heuristics, I know that for it to be admissible it is necessary that every value of h(n)<=H(n)* but I am still in doubt of how I…
-
1
votes1
answer31
viewsQ: Doubt about SQL
Good afternoon guys, I am learning SQL and I have to do an exercise that is: Select the first and last names of employees and consultants working in the "Financial" department. Turns out I’m trying…
-
0
votes2
answers1331
viewsQ: Intermediate vectors in C
People have to develop a code that reads the size of 2 vectors dps the elements of it (these vectors are increasing), transform into a single vector (it doesn’t have to be ordered), and then using…
-
0
votes2
answers123
viewsQ: Partitioning in C
I have to do an activity in which I must type in the input the size of the vector, the position of its pivot, and then type the elements that make up this vector input example: 7 - vector size 1 -…
-
0
votes1
answer111
viewsQ: Structure of Data/ Stacks
People need to do a battery exercise that receives String, in which in the first line I have to include the size of the stack and in the others go giving the commands, example : Entree: 5 And…