已注销
已注销
全部文章
C语言实现基本...
java(1)
laravel(1)
LeetCode(1)
lumen(2)
NLP(1)
object detection(1)
PAT(54)
POJ(1)
动态规划(7)
并查集(1)
推荐系统(1)
操作系统(3)
未归档(3)
机器学习(3)
比赛(1)
目标检测(12)
算法学习(35)
归档
标签
去牛客网
登录
/
注册
灵雪痕的个人博客
世上无难事,只要功夫深。
全部文章
/ C语言实现基本的数据结构与算法
(共7篇)
DFS-深度优先算法解决迷宫问题
/*main.cpp*/#define _CRT_SECURE_NO_WARNINGS #include<iostream> using namespace std; int sr, sc, dr, dc; int R,C,minLen = 100; char grid[10][10...
2017-11-24
0
399
c语言实现基本的数据结构(六) 串
#include <stdio.h> #include <tchar.h> #include <stdlib.h> // TODO: 在此处引用程序需要的其他头文件 struct String{ char* ch; int length; ...
2017-10-28
0
430
c语言实现基本的数据结构(五) 单链队列
#include <stdio.h> #include <tchar.h> #include <stdlib.h> #define MaxQueueSize 100 // TODO: 在此处引用程序需要的其他头文件 struct Node{ int ...
2017-10-28
0
469
c语言实现基本的数据结构(四) 循环队列
#include <stdio.h> #include <tchar.h> #include <stdlib.h> #define MaxQueueSize 100 // TODO: 在此处引用程序需要的其他头文件 struct Queue { in...
2017-10-27
0
359
c语言实现基本的数据结构(三) 栈
#include <stdio.h> #include <tchar.h> #include <stdlib.h> #define StackSize 5 #define IncrementSize 5 // TODO: 在此处引用程序需要的其他头文件 st...
2017-10-27
0
370
c语言实现基本的数据结构(二) 链表(包括链表的三种简单排序算法)
#include "stdafx.h" #include <stdlib.h> //创建一个节点,data为value,指向NULL Node* Create(int value){ Node* head = (Node*)malloc(sizeof(Node...
2017-10-27
0
431
c语言实现基本的数据结构(一) 线性表
#include <stdio.h> #include <tchar.h> #include <stdlib.h> #define LIST_INIT_SIZE 100 #define LISTINCREMENT 10 // TODO: 在此处引用程序需要的...
2017-10-26
0
448