Skip to content

Commit

Permalink
包含头文件
Browse files Browse the repository at this point in the history
  • Loading branch information
zj0395 committed Apr 20, 2018
1 parent 3eeffaf commit bec200e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions sudokucrack.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*************************************************************************
/*************************************************************************
> File Name: sudokucrack.cpp
> Author: zj
> Mail: [email protected]
Expand All @@ -8,7 +8,8 @@
#include<iostream>
#include <random>
#include "sudokucrack.h"
static std::default_random_engine e(time(0));//c++11,需要头文件random,windows可能还需要头文件ctime
#include <ctime>
static std::default_random_engine e(time(0));//c++11
static std::uniform_int_distribution<int> u(0,1);
int SudokuCrack::times=0;
SudokuCrack::SudokuCrack(vvint& tt) : vvnum(tt)
Expand Down

0 comments on commit bec200e

Please sign in to comment.