摘要: Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases. For example,"A man, a plan, a canal: Pan 阅读全文
posted @ 2018-01-04 23:08 immjc 阅读(101) 评论(0) 推荐(0) 编辑
摘要: Given a non-empty array of integers, return the third maximum number in this array. If it does not exist, return the maximum number. The time complexi 阅读全文
posted @ 2018-01-04 20:13 immjc 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 函数指针 函数指针指向的是函数而非对象,和其他指针一样,函数指针指向某种特定类型。 函数的类型由它的返回值类型和形参类型共同决定,与函数名无关。 pf指向一个函数,该函数的参数是两个const string的引用,返回值是bool类型,*pf两边的括号必不可少 使用函数指针 当我们把函数名作为一个值 阅读全文
posted @ 2018-01-04 14:29 immjc 阅读(295) 评论(0) 推荐(0) 编辑
摘要: Given an array of integers and an integer k, you need to find the number of unique k-diff pairs in the array. Here a k-diff pair is defined as an inte 阅读全文
posted @ 2018-01-04 12:47 immjc 阅读(195) 评论(0) 推荐(0) 编辑