自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(22)
  • 收藏
  • 关注

原创 C++算法(12)

sa

2019-11-25 16:01:03 85

原创 C++算法(11)

cscs

2019-11-25 15:44:44 186

原创 C++算法(10)

dsa

2019-11-25 15:37:29 124

原创 C++算法(9)

a

2019-11-25 15:33:01 92

原创 C++算法(8)

xz

2019-11-25 11:07:29 70

原创 C++算法(7)数组实现栈

as

2019-11-25 10:08:32 225

原创 C++算法(6)桶排序

#include<iostream> #include<vector> #include<algorithm> //** 计数排序,不考虑数据特征,无脑排序,用的不多 */ using namespace std; void BucketSort(vector<int> &, int, int...

2019-11-25 10:04:56 141

原创 Leetcode (2)

/******************************************************************** 给出两个 非空 的链表用来表示两个非负的整数。其中,它们各自的位数是按照 逆序 的方式存储的,并且它们的每个节点只能存储 一位 数字。 如果,我们将这两个数相加起来,则会返回一个新的链表来表示它们的和。 您可以假设除了数字...

2019-11-22 16:40:47 97

原创 C++算法(5) 堆排序

#include<iostream> #include<vector> #include<algorithm> using namespace std; //int partion(vector<int>&, int, int); void StackSort(vector<int&g...

2019-11-22 16:38:15 94

原创 C++算法(4) 快排

1、 #include<iostream> #include<vector> #include<algorithm> using namespace std; int clipe(vector<int>&, int left, int right); int main() { ...

2019-11-21 16:56:28 140

原创 C++算法(3) 折半查找

sds

2019-11-19 16:52:30 161

原创 C++算法(2)递归

xxc

2019-11-19 16:51:40 123

原创 C++算法(1) 排序 和 查找

sort排序 #include<iostream> #include<string> #include<algorithm> using namespace std; void BubbleSort(int list[], int n); int main() { int list[5...

2019-11-19 16:49:49 181 1

原创 小白学习老九君C++笔记(15) .h .cpp and mian.cpp的编译

221

2019-11-13 10:17:50 165

原创 小白学习老九君C++笔记(14) 构造函数和析构函数

12

2019-11-13 08:58:17 133

原创 Leetcode (1)

as

2019-11-05 13:56:43 566

原创 Leetcode (30) C语言实现:给定一个只包括 '(',')','{','}','[',']' 的字符串

bool isValid(char * s){ char temp1; int i = 0; int TSIZE = strlen(s); typedef struct { char data[TSIZE]; int top; int bottom; }stack; //** 创建 */...

2019-11-05 13:56:05 1571

原创 C语言基础学习(20)结构链表制作

//** 结构链表制作 **/ #include<stdio.h> #include<string.h> #include<stdlib.h> char * s_gets(char *, int); struct film * InputIfor(struct film*); void PutIfor(struct ...

2019-11-02 15:18:28 88

原创 C语言基础学习(19)传递结构的地址,结构体,但没有结构的指针

指针的问题```c#include<stdio.h>#include<string.h>#define NLEN 30char* s_get(char *, int );struct namect{ char fname[NLEN]; char lname[NLEN]; int letters;};void getinfor(...

2019-11-01 15:38:56 144

原创 C语言基础学习(18)

xxx

2019-11-01 15:35:05 108

原创 C语言基础学习(17)Vector

3

2019-11-01 15:16:22 190

原创 C语言基础学习(16) s_get

s_gets函数的应用:#include<stdio.h>#include<string.h>char* s_get(char *, int );int main(){ char st1[2] ="s"; s_get(st1, 4); //puts(st1); printf("%s\n", st1); return 0...

2019-11-01 15:12:25 685

空空如也

空空如也

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

TA关注的人

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