This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <bits/stdc++.h> | |
#define MAX 1000000 | |
using namespace std; | |
struct trie{ | |
map<char, int> sig; | |
bool termina; | |
int a, b; | |
}; | |
trie t[MAX]; | |
int n = 1; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
create table cliente ( | |
cliente_id varchar(8) not null, | |
nombre varchar(50), | |
paterno varchar(50), | |
materno varchar(50), | |
primary key (cliente_id) | |
) | |
create table cargo ( | |
cargo_id varchar(8) not null, |
OlderNewer