原创 2005年華中科技大學計算機保研機試真題

#include<stdio.h> #include<string.h> struct location { char c; //字符 int n[100]; //該字符在數組中的位置 int c

原创 華中科技大學計算機學院2017年考研機試第三題

要求: 1.實現大數相加 2.數的長度不能事先確定 思路: 用鏈表實現變長 #include<stdio.h> #include<stdlib.h> typedef struct LNode { cha