
C Programming Language
hnujunjie
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
贝尔曼福特算法 ---- C语言实现
#include<stdio.h> #include<string.h> #define MAX 100 typedef struct graph { int vn; char vertex[MAX]; int cost[MAX][MAX]; int edge[MAX][MAX]; char route[MAX][MAX]; } GH; int upde = 1; in...原创 2020-02-11 23:13:12 · 957 阅读 · 0 评论 -
2013年12月CCF试题解答
#include<stdio.h> #include<string.h> int main() { void record(int a[],int b[],int n); int seekMax(int a[],int n); int number = 0; scanf("%d",&number); int original[1200]; int flag[1...原创 2019-12-04 21:35:31 · 249 阅读 · 0 评论 -
C语言实现简单单链表
这是使用C语言实现的单链表,不是很健全,但是足以表达原理了。本人水平有限,愿大家在阅读的同时,多给出建议,指出不足之处,谢谢! #include<stdio.h> #include<stdlib.h> typedef struct ListItem { int a; struct ListItem * next; }Ls; int main() { Ls ...原创 2019-10-18 22:28:08 · 267 阅读 · 0 评论