Skip to content

Instantly share code, notes, and snippets.

View yaswanthrajyadiki's full-sized avatar

Y.Yaswanth Raj Kumar yaswanthrajyadiki

View GitHub Profile
import java.util.Scanner;
import java.util.StringTokenizer;
class BredthFirstSearch {
boolean[] visited;
Queue<Integer> vertexQueue;
int[][] array;
int size;
BredthFirstSearch(int size) {
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 {
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