• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
zihao,wang
博客园 | 首页 | 新随笔 | 新文章 | 联系 | 订阅 订阅 | 管理
上一页 1 2

2019年1月4日

最长公共前缀
摘要: 方法一 循环: class Solution {public: string longestCommonPrefix(vector<string>& strs) { if(strs.empty()) { return ""; } //注意为空的情况 string str1; //从vector中取 阅读全文
posted @ 2019-01-04 19:32 zihao,wang 阅读(155) 评论(0) 推荐(0)
 
 

2019年1月3日

罗马数字转换成整数
摘要: 方法一: class Solution {public: int romanToInt(string s) { int len=s.size(); map<string,int> number{ {"I",1}, {"V",5}, {"X",10}, {"L",50}, {"C",100}, {"D 阅读全文
posted @ 2019-01-03 23:10 zihao,wang 阅读(136) 评论(0) 推荐(0)
 
回文数
摘要: 方法一: class Solution {public: bool isPalindrome(int x) { if(x<0) return false; int count=0; //用来记录x的位数 int num; //每一位的数字 int y[10]; //声明一个数组用来存每一位的数字 w 阅读全文
posted @ 2019-01-03 18:57 zihao,wang 阅读(179) 评论(0) 推荐(0)
 
 

2018年12月31日

两数之和
摘要: 方法一 暴力法 class Solution {public: vector<int> twoSum(vector<int>& nums, int target) { for(int i=0;i<nums.size();i++) { for(int j=0;j<nums.size();j++) { 阅读全文
posted @ 2018-12-31 14:46 zihao,wang 阅读(175) 评论(0) 推荐(0)
 
 
上一页 1 2

公告


博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3