Hill-Climbing Searching Algorithm

8Puzzles Problem

#include<vector>
#include<iostream>
#include<utility>
#include<algorithm>


#define random(x) (rand()%x)
#define MaxSteps 100
int cost;
bool InRandomRestart = false;


using namespace std;

struct _8Puzzles {
    vector<vector<int>> State; // current state
    pair<int, int> BlankPos; // position of the blank.
    int ManhattanDis;
    vector<int> SuccessorsManhattan; // [0] - Manhattan after move up(if possible)
                                                        // [1] - Manhattan after move down(if possible)
                                                        // [2] - Manhattan after move left(if possible)
                                                        // [3] - Manhattan after move right(if possible)
    _8Puzzles() {
        ManhattanDis = 0;
        State.resize(3);
        for (int i = 0; i < 3; i++)
            State[i].resize(3);
        BlankPos = make_pair(0, 0);
        SuccessorsManhattan.resize(4);
    }

    int Manhattan() {  // Calculate and set Manhattan Distance
        int sum = 0;
        for (int i = 0; i < 3; i++) {
            for (int j = 0; j < 3; j++) {
                if (State[i][j] == 0) continue;
                int row = State[i][j] / 3;
                int col = State[i][j] % 3;
                int distance = abs(row - i) + abs(col - j);
                sum += distance;
            }
        }
        ManhattanDis = sum;
        return sum;
    }

    void SetSuccessorsManhattan() {
        if (CanMoveUp()) {
            _8Puzzles Up = *this;
            Up.MoveUp();
            SuccessorsManhattan[0] = Up.Manhattan();
        }
        else SuccessorsManhattan[0] = 10000;

        if (CanMoveDown()) {
            _8Puzzles Down = *this;
            Down.MoveDown();
            SuccessorsManhattan[1] = Down.Manhattan();
        }
        else SuccessorsManhattan[1] = 10000;

        if (CanMoveLeft()) {
            _8Puzzles Left = *this;
            Left .MoveLeft();
            SuccessorsManhattan[2] = Left.Manhattan();
        }
        else SuccessorsManhattan[2] = 10000;

        if (CanMoveRight()) {
            _8Puzzles Right = *this;
            Right.MoveRight();
            SuccessorsManhattan[3] = Right.Manhattan();
        }
        else SuccessorsManhattan[3] = 10000;
    }
    
    bool CanMoveUp() {
        int row = BlankPos.first, col = BlankPos.second;
        if (row == 0) // on the first row, unable to move up
            return false;
        return true;
    }

    bool CanMoveDown() {
        int row = BlankPos.first, col = BlankPos.second;
        if (row == 2) // on the first row, unable to move up
            return false;
        return true;
    }

    bool CanMoveLeft() {
        int row = BlankPos.first, col = BlankPos.second;
        if (col == 0) // on the first row, unable to move up
            return false;
        return true;
    }

    bool CanMoveRight() {
        int row = BlankPos.first, col = BlankPos.second;
        if (col == 2) // on the first row, unable to move up
            return false;
        return true;
    }

    bool MoveUp() {
        int row = BlankPos.first, col = BlankPos.second;
        if (!CanMoveUp()) // on the first row, unable to move up
            return false;
        else {
            int temp = State[row - 1][col]; // the value that's on top of the blank
            State[row - 1][col] = 0; // blank moves up
            State[row][col] = temp; // value moves down
            BlankPos = make_pair(row - 1, col); // blank position updates
            return true;
        }
    }

    bool MoveDown() {
        int row = BlankPos.first, col = BlankPos.second;
        if (!CanMoveDown()) // on the first row, unable to move up
            return false;
        else {
            int temp = State[row + 1][col]; // the value that's on below of the blank
            State[row + 1][col] = 0; // blank moves below
            State[row][col] = temp; // value moves down
            BlankPos = make_pair(row + 1, col); // blank position updates
            return true;
        }
    }

    bool MoveLeft() {
        int row = BlankPos.first, col = BlankPos.second;
        if (!CanMoveLeft()) // on the first row, unable to move up
            return false;
        else {
            int temp = State[row][col-1]; // the value that's on left of the blank
            State[row][col-1] = 0; // blank moves left
            State[row][col] = temp; // value moves right
            BlankPos = make_pair(row, col-1); // blank position updates
            return true;
        }
    }

    bool MoveRight() {
        int row = BlankPos.first, col = BlankPos.second;
        if (!CanMoveRight()) // on the first row, unable to move up
            return false;
        else {
            int temp = State[row][col + 1]; // the value that's on right of the blank
            State[row][col + 1] = 0; // blank moves right
            State[row][col] = temp; // value moves left
            BlankPos = make_pair(row, col + 1); // blank position updates
            return true;
        }
    }
};

_8Puzzles Generator() {
    _8Puzzles ResultPuzzle;
    // init is the result state of 8Puzzles
    vector<vector<int>> init;
    init.resize(3);
    for (int i = 0; i < 3; i++)
        init[i].resize(3);
    for (int i = 0; i < 3; ++i) {  // 初始状态为目标状态
        for (int j = 0; j < 3; ++j) {
            init[i][j] = i * 3 + j;
        }
    }

    ResultPuzzle.State = init;
    ResultPuzzle.BlankPos = make_pair(0, 0);

    int MoveTimes = 1000;
    while (MoveTimes--) { // randomly moves 1000 times
        int Select = random(4);
        if (Select == 0)
            ResultPuzzle.MoveUp();
        else if (Select == 1)
            ResultPuzzle.MoveDown();
        else if (Select == 2)
            ResultPuzzle.MoveLeft();
        else if (Select == 3)
            ResultPuzzle.MoveRight();
    }
    ResultPuzzle.Manhattan();
    ResultPuzzle.SetSuccessorsManhattan();
    return ResultPuzzle;
}

bool SteepestAscent(_8Puzzles _8P) {
    _8Puzzles CopyPuzzle = _8P;
    int MinManhatton = 9999, MinManIndex;
    int chance = MaxSteps;
    chance = InRandomRestart ? cost + MaxSteps : MaxSteps;

    while (cost < chance) {
        MinManhatton = 9999;
        MinManIndex = -1;
        cost += 1;
        for (int i = 0; i < 4; i++) {
            if (CopyPuzzle.SuccessorsManhattan[i] < MinManhatton && CopyPuzzle.SuccessorsManhattan[i] < CopyPuzzle.ManhattanDis) {
                MinManhatton = CopyPuzzle.SuccessorsManhattan[i];
                MinManIndex = i;
            }
        }
        if (MinManIndex == -1) { // Can't find a smaller successor, reach Shoulder, no solution
            if (!InRandomRestart)
                cout << "Shoulder reaching ";
            return false;
        }
        if (MinManIndex == 0)
            CopyPuzzle.MoveUp();
        else if (MinManIndex == 1)
            CopyPuzzle.MoveDown();
        else if (MinManIndex == 2)
            CopyPuzzle.MoveLeft();
        else if (MinManIndex == 3)
            CopyPuzzle.MoveRight();

        CopyPuzzle.SetSuccessorsManhattan();
        CopyPuzzle.Manhattan();

        if (CopyPuzzle.ManhattanDis == 0) {
            return true;
        }
    }
    if (!InRandomRestart)
        cout << "Max steps exceeded ";
    return false;
}

bool FirstChoice(_8Puzzles _8P) {
    _8Puzzles CopyPuzzle = _8P;
    int MinManhatton = 9999, MinManIndex;

    while (cost < MaxSteps) {
        MinManhatton = 9999;
        MinManIndex = -1;
        cost += 1;
        for (int i = 0; i < 4; i++) {
            if (CopyPuzzle.SuccessorsManhattan[i] < MinManhatton && CopyPuzzle.SuccessorsManhattan[i] < CopyPuzzle.ManhattanDis) {
                MinManhatton = CopyPuzzle.SuccessorsManhattan[i];
                MinManIndex = i;
            }
        }
        if (MinManIndex == -1) { // Can't find a smaller successor, reach Shoulder, no solution
            if (!InRandomRestart)
                cout << "Shoulder reaching";
            return false;
        }
        if (MinManIndex == 0)
            CopyPuzzle.MoveUp();
        else if (MinManIndex == 1)
            CopyPuzzle.MoveDown();
        else if (MinManIndex == 2)
            CopyPuzzle.MoveLeft();
        else if (MinManIndex == 3)
            CopyPuzzle.MoveRight();

        CopyPuzzle.SetSuccessorsManhattan();
        CopyPuzzle.Manhattan();

        if (CopyPuzzle.ManhattanDis == 0)
            return true;
    }
    if (!InRandomRestart)
        cout << "Max steps exceeded ";
    return false;
}

bool SimulatedAnnealing(_8Puzzles _8P) {
    double temperature = 5;
    _8Puzzles CopyPuzzle = _8P;
    while (temperature > 0.00001) {
        cost += 1;
        bool better = false;
        int ran; // randomly choose a successor
        do {
            ran = random(4);
        } while (CopyPuzzle.SuccessorsManhattan[ran] == 10000); // make sure the successor is a valid one
        int nextState = CopyPuzzle.SuccessorsManhattan[ran];
        int curState = CopyPuzzle.ManhattanDis;
        // randomly decide whether use this position or not
        int E = nextState - curState;
        if (E < 0) {
            better = true;
        }
        else if (exp((-1)*E / temperature) >((double)(rand() % 1000) / 1000)) {
            better = true;
        }
        if (better) {
            if (ran == 0)
                CopyPuzzle.MoveUp();
            else if (ran == 1)
                CopyPuzzle.MoveDown();
            else if (ran == 2)
                CopyPuzzle.MoveLeft();
            else if (ran == 3)
                CopyPuzzle.MoveRight();
            CopyPuzzle.SetSuccessorsManhattan();
            CopyPuzzle.Manhattan();
            if (CopyPuzzle.ManhattanDis == 0) // not a result state, keep on climbing
                return true;
        }
        temperature *= 0.999;
    }
    return false;
}

bool RandomRestart(_8Puzzles _8P) {
    InRandomRestart = true;
    cost = 0;
    bool Found = SteepestAscent(Generator());
    while (!Found) {
        _8P = Generator();
        Found = SteepestAscent(_8P);
    }
    InRandomRestart = false;
    return true;
}

int main() {
    int TempTimes, TestTimes,SuccessCount,TotalCost;

    TempTimes = TestTimes = 1000;
    SuccessCount = 0;
    TotalCost = 0;
    while (TestTimes--) {
        cost = 0;
        cout << "Trail No." << TempTimes - TestTimes << ": ";
        if (SteepestAscent(Generator())) {
            cout << "Success! cost = " << cost << endl;
            SuccessCount++;
            TotalCost += cost;
        }
        else {
            cout << "Failure!" << endl;
        }
    }
    cout << "SteepestAscent statistics : " << endl;
    cout << "Success Rate = " << SuccessCount << "/1000" << endl;
    cout << "Average Cost = " << TotalCost / SuccessCount << endl << endl;

    TempTimes = TestTimes = 1000;
    SuccessCount = 0;
    TotalCost = 0;
    while (TestTimes--) {
        cost = 0;
        cout << "Trail No." << TempTimes - TestTimes << ": ";
        if (SimulatedAnnealing(Generator())) {
            cout << "Success! cost = " << cost << endl;
            SuccessCount++;
            TotalCost += cost;
        }
        else {
            cout << "Failure!" << endl;
        }
    }
    cout << "SimulatedAnnealing statistics : " << endl;
    cout << "Success Rate = " << SuccessCount << "/1000" << endl;
    cout << "Average Cost = " << TotalCost / SuccessCount << endl << endl;

    TempTimes = TestTimes = 100;
    SuccessCount = 0;
    TotalCost = 0;
    while (TestTimes--) {
        cout << "Trail No." << TempTimes - TestTimes << ": ";
        RandomRestart(Generator());
        cout << "Success! cost = " << cost << endl;
        SuccessCount++;
        TotalCost += cost;
    }
    cout << "Random Restart statistics : " << endl;
    cout << "Success Rate = " << SuccessCount << "/100" << endl;
    cout << "Average Cost = " << TotalCost / SuccessCount << endl << endl;


    return 0;
}

8Queens Problem

#include<iostream>
#include<vector>
#include<cstdlib>
#include<utility>

#define random(x) (rand()%x)
#define MaxStepsForClimbing 100
int cost = 0;
using namespace std;
int CalculateConflicts(vector<vector<int>> ChessBoard);

// A state of the 8-Queens problem
// Chess board representation of this state
// Number of conflicts of this state
// Number of conflicts there will be if a queen is moved to another row and the same column
struct _8Queen {
    vector < vector<int>> ChessBoard;
    int Conflicts;
    vector<vector<int>> ConflictsBoard;
    _8Queen() {
        ChessBoard.resize(8);
        for (int i = 0; i < 8; i++)
            ChessBoard[i].resize(8);
        ConflictsBoard.resize(8);
        for (int i = 0; i < 8; i++)
            ConflictsBoard[i].resize(8);
        Conflicts = 0;
    }
    
    // look for the least conflicts in the succeesors, so as to move to that state
    pair<int, int> FindLeastConflicts() {
        pair<int, int> ResultPosition;
        int Least = 29; // most conflicts in a 8queens state is 28;
        for (int row = 0; row < 8; row++) {
            for (int col = 0; col < 8; col++) {
                if (ConflictsBoard[row][col] < Least) {
                    Least = ConflictsBoard[row][col];
                    ResultPosition = make_pair(row, col);
                }
            }
        }
        return ResultPosition;
    }

    void ConfilctBoardConstruction() { // construct ConflictBorad
        // find a queen, move it to all rows of the same col to form 7 other states
        // for each state, calculate number of conflict, and set the values in ConflictsBoard
        for (int row = 0; row < 8; row++) {
            for (int col = 0; col < 8; col++) {
                if (ChessBoard[row][col] == 1) { // a queen is found
                    ConflictsBoard[row][col] = Conflicts;
                    vector<vector<int>> NewState = ChessBoard; // copy the chessboard of this state
                    NewState[row][col] = 0; // remove the queen and move her
                    for (int OtherRow = 0; OtherRow < 8; OtherRow++) { // move the queen to the other rows of the same column
                        if (OtherRow != row) { // not the same row
                            NewState[OtherRow][col] = 1; // place the queen
                            ConflictsBoard[OtherRow][col] = CalculateConflicts(NewState); // calculate the conflict of this state, and set it in ConflictsBoard
                        }
                        NewState[OtherRow][col] = 0; // remove the queen after calculation and ready to move her to another row
                    }
                }
            }
        }
    }

    bool CheckSuccess() { // wheather or not it has found a result
        return CalculateConflicts(ChessBoard) == 0;
    }
};



// randomly generates an 8-Queens problem where queens are placed in different column
_8Queen _8QueensGeneration() {
    _8Queen Result;
    for (int i = 0; i < 8; i++) {   // place an queen in a random row from col 0 to 7
        int ran = random(8);
        Result.ChessBoard[ran][i] = 1;
    }
    Result.Conflicts = CalculateConflicts(Result.ChessBoard); // calculate and set the conflicts of the problem
    Result.ConfilctBoardConstruction();


    return Result;
}

int CalculateConflicts(vector<vector<int>> ChessBoard) {
    int Result = 0; // Calculated number of conflicts

    for (int row = 0; row < 8; row++) {
        for (int col = 0; col < 8; col++) {
            if (ChessBoard[row][col] == 1) {
                for (int i = col + 1; i < 8; i++) { // Sum of queens on the right
                    if (ChessBoard[row][i] == 1)
                        Result++;
                }

                for (int i = row + 1; i < 8; i++) { // Sum of queens on below
                    if (ChessBoard[i][col] == 1)
                        Result++;
                }

                int temprow = row, tempcol = col;
                while (temprow + 1 < 8 && tempcol + 1 < 8) {
                    temprow += 1;
                    tempcol += 1;
                    if (ChessBoard[temprow][tempcol] == 1)
                        Result++;
                }

                temprow = row, tempcol = col;
                while (temprow + 1 < 8 && tempcol - 1 >= 0) {
                    temprow += 1;
                    tempcol -= 1;
                    if (ChessBoard[temprow][tempcol] == 1)
                        Result++;
                }

            }
        }
    }
    return Result;
}

bool InRandomRestart = false;
bool restart = false;
// select a position, whose state's conflict is the least of all
// move the queen that's in that column, to the selected row.
bool HillClimbing(_8Queen _8Q)  {
    pair<int, int> LeastPosition; // row and column of the least-conflict position;
    _8Queen QueenMove = _8Q; // the succesor state, the best neighbor
    restart = false;
    int chance = MaxStepsForClimbing;
    chance = InRandomRestart ? cost + MaxStepsForClimbing : MaxStepsForClimbing;
    while (cost < chance) {
        cost += 1;  
        LeastPosition = QueenMove.FindLeastConflicts();

        for (int row = 0; row < 8; row++) // find and remove the queen
            if (QueenMove.ChessBoard[row][LeastPosition.second] == 1)
                QueenMove.ChessBoard[row][LeastPosition.second] = 0;

        QueenMove.ChessBoard[LeastPosition.first][LeastPosition.second] = 1; // place the queen in the least confilcts position
        QueenMove.Conflicts = CalculateConflicts(QueenMove.ChessBoard);  // calculate new conflicts for the new state
        QueenMove.ConfilctBoardConstruction(); // construct the new conflict board for the new state
        if (QueenMove.CheckSuccess() == true) // not a result state, keep on climbing
            return true;
    }
    return false;
}

// randomly select a position, whose state's conflict would be smaller than the current one
// move the queen that's in that column, to the selected row.
int FirstChoice(_8Queen _8Q) {
    pair<int, int> BetterPosition; // row and column of a randomly selected better-conflict position;
    _8Queen QueenMove = _8Q; // the succesor state, the best neighbor
    int RandomRow, RandomCol;


    while (cost < MaxStepsForClimbing) {
        cost += 1;

        int generateCount = 0;
        bool betterFound = true;
        do { // keep generating new random value until the condition is fufiled.
            RandomRow = random(8);
            RandomCol = random(8);
            generateCount++;
            
            if (generateCount > 100) {
                betterFound = false;
                break;
            }
        } while (QueenMove.ConflictsBoard[RandomRow][RandomCol] >= QueenMove.Conflicts);

        if (betterFound == false)
            continue;
        
        BetterPosition = make_pair(RandomRow, RandomCol);

        for (int row = 0; row < 8; row++) // find and remove the queen
            if (QueenMove.ChessBoard[row][BetterPosition.second] == 1) {
                QueenMove.ChessBoard[row][BetterPosition.second] = 0;
                break;
            }

        QueenMove.ChessBoard[BetterPosition.first][BetterPosition.second] = 1; // place the queen in the least confilcts position
        QueenMove.Conflicts = CalculateConflicts(QueenMove.ChessBoard);  // calculate new conflicts for the new state
        QueenMove.ConfilctBoardConstruction(); // construct the new conflict board for the new state
        if (QueenMove.CheckSuccess() == true) // not a result state, keep on climbing
            break;
    }
    return cost;
}

bool RandomRestart(_8Queen _8Q) {
    InRandomRestart = true;
    cost = 0;
    bool Found = HillClimbing(_8Q);
    while (!Found) { // if 
        _8Q = _8QueensGeneration();
        Found = HillClimbing(_8Q);
    }
    InRandomRestart = false;
    return true;
}

bool SimulatedAnnealing(_8Queen _8Q) {
    double temperature = 5;
    _8Queen QueenMove = _8Q;
    while (temperature > 0.00001) {
        cost += 1;
        int RandomRow = random(8);
        int RandomCol = random(8); // randomly pick a position
        bool better = false;
        int nextState = QueenMove.ConflictsBoard[RandomRow][RandomCol];
        int curState = QueenMove.Conflicts;

        // randomly decide whether use this position or not
        int E = nextState - curState;
        if (E < 0) {
            better = true;
        }
        else if (exp((-1)*E / temperature) >((double)(rand() % 1000) / 1000)) {
            better = true;
        }

        if (better) {
            for (int row = 0; row < 8; row++) // find and remove the queen
                if (QueenMove.ChessBoard[row][RandomCol] == 1) {
                    QueenMove.ChessBoard[row][RandomCol] = 0;
                    break;
                }

            QueenMove.ChessBoard[RandomRow][RandomCol] = 1; // place the queen in the least confilcts position
            QueenMove.Conflicts = CalculateConflicts(QueenMove.ChessBoard);  // calculate new conflicts for the new state
            QueenMove.ConfilctBoardConstruction(); // construct the new conflict board for the new state
            if (QueenMove.CheckSuccess() == true) // not a result state, keep on climbing
                return true;
            temperature *= 0.99;
        }
    }
    return false;
}



int main() {
    int times = 1000;
    int SuccessCount = 0;
    int TotalCost = 0;

    // hillclimbing (steepest-ascent)
    /*while (times--) {
        cost = 0;
        cout << "Trail No." << 1000 - times << ": ";
        HillClimbing(_8QueensGeneration());
        if (cost >= MaxStepsForClimbing)
            cout << "Searched Failed." << endl;
        else {
            cout << "Success! cost = " << cost << endl;
            SuccessCount++;
            TotalCost += cost;
        }
    }
    cout << "HillClimbing(Steepest-Ascent) statistics : " << endl;
    cout << "Success Rate = " << SuccessCount << "/1000"  << endl;
    cout << "Average Cost = " << TotalCost / SuccessCount << endl << endl;

    times = 1000;
    SuccessCount = 0;
    TotalCost = 0;
    while (times--) {
        cost = 0;
        cout << "Trail No." << 1000 - times << ": ";
        cost = FirstChoice(_8QueensGeneration());
        if (cost >= MaxStepsForClimbing)
            cout << "Searched Failed." << endl;
        else {
            cout << "Success! cost = " << cost << endl;
            SuccessCount++;
            TotalCost += cost;
        }
    }
    cout << "HillClimbing(First Choice) statistics : " << endl;
    cout << "Success Rate = " << SuccessCount << "/1000" << endl;
    cout << "Average Cost = " << TotalCost / SuccessCount << endl << endl;*/

    times = 100;
    SuccessCount = 0;
    TotalCost = 0;
    while (times--) {
        cout << "Trail No." << 100 - times << ": ";
        RandomRestart(_8QueensGeneration());
        cout << "Success! cost = " << cost << endl;
        SuccessCount++;
        TotalCost += cost;
    }
    cout << "HillClimbing(Random Restart) statistics : " << endl;
    cout << "Success Rate = " << SuccessCount << "/100" << endl;
    cout << "Average Cost = " << TotalCost / SuccessCount << endl << endl;

    times = 100;
    SuccessCount = 0;
    TotalCost = 0;
    while (times--) {
        cost = 0;
        cout << "Trail No." << 100 - times << ": ";
        if (SimulatedAnnealing(_8QueensGeneration())) {
            cout << "Success! cost = " << cost << endl;
            SuccessCount++;
            TotalCost += cost;
        }
        else
            cout << "Searched Failed." << endl;
    }
    cout << "HillClimbing(Simulated Annealing) statistics : " << endl;
    cout << "Success Rate = " << SuccessCount << "/100" << endl;
    cout << "Average Cost = " << TotalCost / SuccessCount << endl << endl;

    return 0;
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 196,264评论 5 462
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 82,549评论 2 373
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 143,389评论 0 325
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 52,616评论 1 267
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 61,461评论 5 358
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 46,351评论 1 273
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 36,776评论 3 387
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 35,414评论 0 255
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 39,722评论 1 294
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 34,760评论 2 314
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 36,537评论 1 326
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 32,381评论 3 315
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 37,787评论 3 300
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,030评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 30,304评论 1 252
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 41,734评论 2 342
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 40,943评论 2 336

推荐阅读更多精彩内容

  • 八点的时候,李鲤给苏河发消息说,“苏河?最后你志愿填哪儿了啊?”“苏河?” 十点多的时候苏河回李鲤短信,S大,李鲤...
    小小小壶阅读 278评论 0 0
  • 昨晚,洗漱好之后,看了一部电影,(丈夫得了抑郁症),看完之后很感动,很治愈的一部电影,让人觉得,只要有爱,只要有陪...
    艾尚萱阅读 774评论 0 0
  • 一直想写点东西,没有个中心思想,也没个主题线路,所有都是随笔写下,姑妄言之,姑妄听之。 今天说点什么呢,就谈谈我的...
    七爷拉勾勾阅读 322评论 0 0
  • 有很多人都会面临一个艰难抉择,就是你的两个朋友吵起来的时候怎么调和,作为中间者你会感觉自己肩负重任,那么首先,我们...
    月朔新梦阅读 726评论 1 1