- 博客(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
463
转载 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
182
转载 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
214
转载 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
198
转载 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
309
转载 测试标准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
568
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅