摘要:
//1、找到数字字符或者加减号//2、计算值时需要保证不溢出,将要溢出时返回最大或最小值int myatoi(const char *str){ if ( NULL == str ) { printf("error, param is NULL\n"); re... 阅读全文
摘要:
#include #include typedef struct _Node{ int value; struct _Node *next;}Node;Node *MergeList(Node *listA, Node *listB);void PrintList(Node *head);int m... 阅读全文