This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Test</title> | |
<link rel="stylesheet" href="css/normalize.css"/> | |
<link rel="stylesheet" href="css/bootstrap.min.css"/> | |
</head> | |
<body style="background-color: gray;"> | |
<div style="width: 960px; margin: 8px auto; background-color: white"> |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Test</title> | |
<link rel="stylesheet" href="css/normalize.css"/> | |
<link rel="stylesheet" href="css/bootstrap.min.css"/> | |
</head> | |
<body> | |
<div class="container-fluid"> |
This file contains 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
Truyền tin dạng DEC: | |
... | |
Truyền tin dạng Binary: | |
... |
This file contains 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
#pragma once | |
#include <string> | |
#include <vector> | |
#include <math.h> | |
using namespace std; | |
class Decoder | |
{ | |
public: | |
char K = 0; |
This file contains 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 <math.h> | |
using namespace std; | |
int main() | |
{ | |
int n = 15; | |
for (int i = 1; i <= n; i++) | |
{ |
This file contains 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 <vector> | |
#include <algorithm> | |
#include "Point2D.h" | |
using namespace std; | |
Point2D FindMedianPoint(vector<Point2D> points) | |
{ | |
#pragma region Calculating Horizontal Cost | |
//=========================================================================================== | |
//O(NLogN) Sort - sort horizontal x-coor increasing |
NewerOlder