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
import java.util.Scanner; | |
import java.util.StringTokenizer; | |
class BredthFirstSearch { | |
boolean[] visited; | |
Queue<Integer> vertexQueue; | |
int[][] array; | |
int size; | |
BredthFirstSearch(int size) { |
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
import java.util.Random; | |
import java.util.PriorityQueue; | |
import java.util.Collections; | |
import java.util.StringTokenizer; | |
import java.util.Scanner; | |
import java.util.ArrayList; | |
@SuppressWarnings("unchecked") | |
class MyHashTable { |
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
Relication of data base from external MySql Instance to Amazon RDS Instance | |
Links: | |
Replication with a MySQL or MariaDB Instance Running External to Amazon RDS | |
https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/MySQL.Procedural.Importing.External.Repl.html | |
Importing Data to an Amazon RDS MySQL or MariaDB DB Instance with Reduced Downtime | |
https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/MySQL.Procedural.Importing.NonRDSRepl.html |
OlderNewer