自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

转载 C语言 插入排序 Insert Sort

#include <stdio.h>void exchange(int* array, int p1, int p2){ if (p1 == p2) return; int temp = array[p1]; array[p1] = array[p2]...

2019-08-20 17:27:00 403

转载 C语言 快速排序 Quick Sort

#include <stdio.h>void exchange(int *array, int p1, int p2){ if (p1 == p2) return; int temp = array[p1]; array[...

2019-08-20 10:45:00 129

转载 C语言 冒泡排序 Bubble Sort

#include <stdio.h>void bubbleSort(int *array, int len){ int i, j; for (i = 0; i < len - 1; i++) { for (j = 0...

2019-08-19 09:44:00 152

转载 C语言 二叉树 BinaryTree

#include <stdio.h>#include <stdlib.h>#define bool int#define false 0#define true 1struct Node{ struct Nod...

2019-08-05 15:08:00 146

转载 C语言 单链表 Singly Linked List

#include <stdio.h> #include <stdlib.h> #define bool int #define true 1 #define false 0 struct List { struct Node* ptrNode; int ...

2019-08-04 22:24:00 251

转载 测试标准TTCN3官方介绍带个人翻译

Reference:http://www.ttcn-3.org/index.php/about/introduction The Testing and Test Control Notation Version 3 (TTCN-3) is a standardized testing te...

2019-08-01 11:07:00 445

空空如也

空空如也

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

TA关注的人

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