自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

一直在改错的蓝熊猫

和我一起进步吧(๑•̀ㅂ•́)و✧

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

原创 git bash超简单八步用法

1. cd + 文件夹 进入本地文件夹 2. git init 3. git remote add 【你自己起的名字】 git@那个github的地址 4. $git pull 【你自己起的名字】 master 把远程仓库pull下来 5. 修改文件 6. git add . 或 git add 某个文件 一个 . 代表所有文件 或者某个文件,如...

2019-04-16 22:17:55 530

原创 C++ 插入排序法 stl实现

// insertsort.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。 // #include "pch.h" #include <iostream> #include <vector> using namespace std; void insertSort(vector<int> &b, int n) { f...

2019-04-08 20:55:31 752 1

原创 C++ 连接两字符串

#include<iostream> #include<cstring> int main() { std::string a = "hello"; std::string b = "dd"; std::cout<<a+b; //output: hellodd }

2019-04-05 15:54:01 1314

原创 两则简单的笔试题 引用传递&值传递&指针传递 + 其他

#include <iostream> using namespace std; int a(int m) {return ++m;} int b(int &m) {return ++m;} int c(int *m) {return ++(*m);} int main() { int p = 0,aa = 10; cout << "Hello...

2019-04-02 22:33:38 226

空空如也

空空如也

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

TA关注的人

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