标签:leetcode

leetcode5. Longest Palindromic Substring的C实现

下面是本人用C实现的曼彻斯特算法用来解决最长回文子串问题,提交时出现 Runtime Error。 然后就拿系统给的Last executed input作Testcase,却又成功算出来了,并且跟expected answer一样。 真是不知道问题出在哪?麻烦各位高手给看看,代码如下: char *expand(char *s) { int i, j, ……

leetcode 3sum提不上去,请看看哪里出问题了

Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives the sum of zero. Note: The solution set m……

leetcode的问题:数组中除了某个数只出现一次外,其余的都出现了三次,求只出现一次的数字

#include<stdio.h> int* DecToK(int num, int k)//十进制化为K进制,这里的k为3 { int p[32] = { “0” }; int index = 0; while (num) { p[index++] = num % k; num = num / k; } return p……

leetcode 141. Linked List Cycle

Given a linked list, determine if it has a cycle in it. 本人的code: /** * Definition for singly-linked list. * struct ListNode { *     int val; *     struct ListNode *next; * }; */ bo……

Leetcode提交代码Time Limit Exceeded

在Leetcode上面提交代码(第三题:Longest Substring Without Repeating Characters),提示Time Limit Exceeded。本人在VS上面可以正常运行,对于Leetcode的测试例子,运行时间大约是100ms。 本人的代码如下: //暴力搜寻,从头到尾遍历子串 class Solution { publ……

Leetcode189题,本地输出与提交输出不一样啊.

leetcode #include <iostream> #include<malloc.h> using namespace std; void rotate(int* nums, int numsSize, int k) { int j=k-1,m=k-1; int *temp =(int *)malloc(k*siz……