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
. ".\Get-RegKeyLastWriteTime.ps1" | |
#$errorActionPreference = "SilentlyContinue" | |
set-variable -name SSIPath -value "<your beloved directory address>" -option constant | |
set-variable -name FlagError -value 1 -option constant | |
set-variable -name FlagFree -value 2 -option constant | |
set-variable -name FlagUser -value 3 -option constant |
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 <cstdio> | |
#include <iostream> | |
#include <fstream> | |
#include <vector> | |
#include <string> | |
#include <map> | |
using namespace std; | |
struct Node; |
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 <cstdio> | |
#include <iostream> | |
#include <vector> | |
#include <algorithm> | |
const int INF = 100000000; //one time <= 10^6 | |
struct Edge | |
{ | |
int v, time; |
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 <cassert> | |
#include <exception> | |
#include <utility> | |
#include <vector> | |
#include <algorithm> | |
#include <map> | |
#include <set> |
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 <cstdio> | |
#include <iostream> | |
#include <cmath> | |
#include <cassert> | |
using namespace std; | |
const int SIZE = 32; | |
const float T = 0.2f; | |
const float H = 0.4f; |
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
.586 | |
.model flat, stdcall | |
include E:\studies\__asm\masm32\include\msvcrt.inc | |
include E:\studies\__asm\masm32\include\kernel32.inc | |
includelib E:\studies\__asm\masm32\lib\kernel32.lib | |
includelib E:\studies\__asm\masm32\lib\msvcrt.lib | |
ExitProcess proto :DWORD |
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 <cstdio> | |
#include <iostream> | |
#include <cstring> | |
#include <vector> | |
//Bron–Kerbosch | |
using namespace std; | |
int 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
%token IDENTIFIER CONSTANT STRING_LITERAL SIZEOF | |
%token INT FLOAT DOUBLE CONST VOID | |
%token STRUCT | |
%token IF ELSE WHILE DO FOR CONTINUE BREAK RETURN | |
primary_expression = IDENTIFIER | CONSTANT | STRING_LITERAL | '(' expression ')' ; | |
postfix_expression = | |
primary_expression | | |
postfix_expression '[' expression ']' | |
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
.386 | |
.model flat, stdcall | |
include \masm32\include\msvcrt.inc | |
include \masm32\include\kernel32.inc | |
includelib \masm32\lib\kernel32.lib | |
includelib \masm32\lib\msvcrt.lib | |
print proto | |
randomize proto |
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
.386 | |
.model flat, stdcall | |
include \masm32\include\msvcrt.inc | |
include \masm32\include\kernel32.inc | |
includelib \masm32\lib\kernel32.lib | |
includelib \masm32\lib\msvcrt.lib | |
print proto | |
randomize proto |
NewerOlder