leetcode刷题
JennyChen333
中科院硕士
展开
-
2015-07-13 leetcode:Longest Substring Without Repeating Characters
整理自我之前的博客 原文地址 Longest substring without repeating characters#include<stdio.h> #include<stdlib.h> #include<map> #include<vector> #include<string> #include<cstdio> #include<iostream> using namespace s原创 2017-10-31 13:26:14 · 260 阅读 · 0 评论 -
2015-07-10 leetcode:happy number
摘自本人之前的博客: 原文地址 leetcode:happy numberclass Solution { public: bool isHappy(int n) { //简单想法就是直接n对10、100、1000等求余数,得到每一位的数字,平方之后重新组合成新的数字,然后再继续判断是否是happy number,直到为1停止,可是到底除到1000还是10000还是100原创 2017-10-31 13:28:12 · 260 阅读 · 0 评论 -
2015-07-09 leetcode :Remove Linked List Elements
摘自本人之前博客: 原文链接 /** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} * }; */ class Solution { public:原创 2017-10-31 13:44:21 · 253 阅读 · 0 评论 -
2015-07-09 leetcode36 : Count Primes
摘自本人以前博客: 原文地址 class Solution { public: int countPrimes(int n) { //返回小于非负整数n 的质数的个数 int count=0; if (n<=2) return 0; bool *s=new bool[n]; //new的写法,注意new的类型原创 2017-10-31 13:46:30 · 294 阅读 · 0 评论