Skip to content
View imsjz's full-sized avatar
🏀
Focusing
🏀
Focusing
Block or Report

Block or report imsjz

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. 实现冒泡、插入、选择排序;快速排序。 实现冒泡、插入、选择排序;快速排序。
    1
    //
    2
    // Created by sanjay on 2020/2/21.
    3
    //
    4
    
                  
    5
    #include "NSort.h"
  2. c语言风格和c++风格stirng转int c语言风格和c++风格stirng转int
    1
    #include <iostream>
    2
    #include <string>
    3
    #include <sstream>
    4
    using namespace std;
    5
    
                  
  3. 有关volatile的例子。一般用atomic来保存多线程的同步性,而非... 有关volatile的例子。一般用atomic来保存多线程的同步性,而非volatile。
    1
    #include <iostream>
    2
    #include <thread>
    3
    
                  
    4
    // 这个链接说这样写会产生问题,但是在mac上测试并没有问题
    5
    // 链接:https://liam.page/2018/01/18/volatile-in-C-and-Cpp/
  4. c++11新特性:可以用库函数创建平台无关的多线程 c++11新特性:可以用库函数创建平台无关的多线程
    1
    #include <iostream>
    2
    #include <thread>
    3
    #include <chrono>  // 时间
    4
    #include <algorithm>
    5
    using namespace std;