
Coding 练习&笔记
Jaqen61
这个作者很懒,什么都没留下…
展开
-
LeetCode-Valid Palindrome
i以后就在这里记录刷题笔记了,边看书,边刷Lleetcode 和 华为题没,厚积薄发!--->Valid Palindrome >Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.For example,原创 2015-05-14 15:27:29 · 376 阅读 · 0 评论 -
递归创建二叉树遇到的一个bug
今天上午在(先序)递归创建二叉树时遇到了一个bug,以下是程序部分: (关于递归创建二叉树这位前辈讲的很清楚, http://blog.youkuaiyun.com/stpeace/article/details/8138303)“` typedef struct node{ char data; struct node *leftch; struct node *right原创 2015-09-01 10:28:15 · 498 阅读 · 0 评论 -
HuaweiCode-在字符串中找出连续最长的数字串
HuaweiCode-在字符串中找出连续最长的数字串问题描述: /* 功能:在字符串中找出连续最长的数字串,并把这个串的长度返回 函数原型: unsigned int Continumax(char** pOutputstr, char* intputstr) 输入参数: char* intputstr 输入字符串输出参数: char** pOutputstr: 连原创 2015-05-15 22:57:21 · 494 阅读 · 0 评论