自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

Coding my future

on the way

  • 博客(6)
  • 收藏
  • 关注

原创 尝试使用趋动云部署Stable Diffusion

云端部署Stable Diffusion结果。

2023-11-09 09:50:47 38 1

原创 尝试使用趋动云部署AI模型

今天试了下云端部署训练模型,主要是默认的镜像环境确实比较省时间。

2023-11-07 14:05:19 37

原创 字符串按字典序排序【c++实现】

#include<algorithm>#include<string>#include<iostream>using namespace std;bool cmp(string a, string b) { return a+b < b+a; //按字典序从小到大排列 } int main() { string s[3]; s[0]...

2019-04-10 09:36:41 16163 6

原创 左神算法-前缀树【c++实现】

#include <iostream>#include <string>using namespace std;struct Node{ int path; int end; int count = 0; Node* nexts[26];};class Trie{private: Node *root;public: Trie(){ r...

2019-04-09 17:34:20 483 2

原创 左神算法-二叉树的序列化和反序列化【c++实现】

#include<iostream>#include<string>#include<vector>#include<stack>#include<queue>using namespace std;struct Node{ int m_nValue; Node* m_pLeft; Node* m_pRight;...

2019-04-03 08:26:11 366 3

原创 左神算法-二叉树的后继节点和先驱节点【c++实现】

#include <iostream>#include <stack>using namespace std;struct Node{ int m_nValue; Node* m_pLeft; Node* m_pRight; Node* m_pParent;};//寻找后继节点Node* most_leftnode(Node* node){...

2019-04-01 11:56:36 429

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除