Posts by Balenciaga • 7 points
4 posts
-
0
votes0
answers38
viewsQ: Return of a wrong create Function
I have the following table in the schema utfpr: create table Matricula( dis_sigla varchar(50), tur_numero varchar(15), alu_ra varchar(100) , mat_ano date, mat_nota float not null, constraint…
-
0
votes2
answers95
viewsQ: Mergesort sorting algorithm error
I am having a problem with an mergesort sort algorithm in which the output of the ordered vector appears a repeated number and also a memory address. Follow the code: Mergesort /*Funcao que…
-
0
votes1
answer80
viewsQ: Casting error
I have a program that works with the inverse Polish notation, which is, when we have an operation ((2+3)8), in Polish notation stands "23+8". I already managed to pass the operation to the Polish…
-
0
votes1
answer97
viewsQ: Press factorization using Stack
I made a stack with vector, with basic functions (push, pop, Peek) and with it I want to make a prime factorization of a value. I made the program, but when I compile it, it is in an infinite loop…