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<iostream> | |
#include<string> | |
#include<queue> | |
#include <sstream> | |
#include <stdlib.h> /* atoi */ | |
using namespace std; | |
void Fill(char** matrix,int x1,int y1,int x2,int y2, char c); | |
void Clear(char** matrix,int b, int c) |
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<iostream> | |
using namespace std; | |
#define TOTAL 101 | |
char tabla[TOTAL][TOTAL]; | |
int tabla2[TOTAL][TOTAL]; | |
int main() { | |
char n,m; |
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<iostream> | |
using namespace std; | |
#define TOTAL 1000000 | |
#define MIN(a,b) ((a) < (b) ? (a) : (b)) | |
typedef unsigned short int usint; | |
usint tabla[TOTAL]; | |
int main() |
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
// ConsoleApplication2.cpp: define el punto de entrada de la aplicación de consola. | |
// | |
#include "stdafx.h" | |
#define TOTAL 1000000 | |
#define MAX(a,b) ((a) > (b) ? (a) : (b)) | |
typedef unsigned short int usint; | |
usint tabla[TOTAL]; |