潇洒橘子

文章
7
资源
0
加入时间
2年10月21天

LeetCode—67. 二进制求和

这题总体思路有点像两个线性表的合并,有个知识点花了很长时间,函数传回字符串,详见上一篇char *S(char *b){ char *s; return s;}这个s是传不回去的,因为在函数体里面定义,是局部变量。#include <stdio.h>#include <stdlib.h>#include <string.h>char *...