I have this structure:
typedef struct Nodo
{
int valor;
int numSubNodos;
struct Nodo *padre;
struct Nodo **hijo;
} Nodo;
To fill it as a non-binary unbalanced tree, or rather a node can have several children and not all th...
Greetings.
It's my first time in forums, I'm learning C ++, and I have had a problem; I have to do a program that at first allows me to add student data to an arrangement.
The problem is that it does not matter how many students you indica...
How do I put several repetitions of the elements that are part of a sequence that is within a complex type?
I have the following scheme:
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"...
I have the following inconvenience that I am finding it hard to decipher.
I have the files distributed as follows:
/
|___control
| |___usuarios.php
|___vista
|___addUser.php
|___modelo
| |___conexion.php
|___index.php
Pass the...
Description:
I am developing a web solution in c # asp.net so that, from the front, put together an object JSON complex so that, when received in the back, save the values in a SQL Server 2012 database.
The JSON comple...
Good, I would appreciate if someone can take this apart and explain it to "fools".
I understand things, that is why I have reached that point of the course, but I do not understand several things.
Someone with some clear concept? I know I have t...
I try to get a small report of SQL Server 2008.
I need to list all the databases created on the server, and include:
Name
creation date
user (the one with db_owner permissions)
and size
The sp_helpdb gives me certain infor...
I want to list the products that are in two lines and also filter by the description, the table has the following structure:
CREATE TABLE productos (
IMA_ARTICULO DOUBLE
,IMA_DESCRIPCION VARCHAR(100)
,IMA_LINEA DOUBLE
,IMA_IMPU...
I need to show an image for 1 second since I spend 1 second to hide it for 1 second, and then show the next image in the list for 1 second and then hide it for 1 second until I scan all the images in the list.
My problem is that my code only...