机场保安小六
机场保安小六
全部文章
代码记录
LeetCode 企业题库(8)
归档
标签
去牛客网
登录
/
注册
机场保安小六的博客
全部文章
/ 代码记录
(共6篇)
花式排序
#include<iostream> #include<vector> #include<algorithm> #include<random> #include<ctime> using namespace std; void bubb...
2020-01-04
0
814
花式遍历二叉树
#include<iostream> #include<stack> #include<queue> using namespace std; struct TreeNode { int val; TreeNode *left; Tree...
2020-01-04
0
720
KMP 马拉车 算法的实现
更加精简的算法 #include<iostream> #include<vector> #include<algorithm> #include<random> #include<math.h> using namespace std; ...
2020-01-04
0
822
拼图游戏
C++ easyX 库函数 // picGame.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。 // easyX #include "pch.h" #include <iostream> #include <gr...
2020-01-04
0
665
每天可以自动签到的一些代码
daily.vbs Set WshShell=WScript.CreateObject("WScript.Shell") WshShell.Run """C:\Program Files (x86)\Google\Chrome\Applicatio...
2019-12-29
0
677
通过 python 生成词云的代码
记录一下相关代码 #coding:utf-8 # 导入需要模块 import jieba from PIL import Image import numpy as np import matplotlib.pyplot as plt from wordcloud import WordCl...
词云
2019-12-27
0
821