codewars (6 kyu) Which are in?

一、题目简介

1. Description:

Given two arrays of strings a1 and a2 return a sorted array r in lexicographical order of the strings of a1 which are substrings of strings of a2.

Example:
a1 = [“arp”, “live”, “strong”]
a2 = [“lively”, “alive”, “harp”, “sharp”, “armstrong”]
returns [“arp”, “live”, “strong”]

2. 个人理解

本题就是给定两个字符列表a、b,然后求属于 a,并且为 b 列表中字符串的子串的字符串,将符合要求的字符串组合成数组并排序。
输入:字符串数组 a、b
输出:有序的字符串数组 c

二、代码分析

1. 代码实现

(1) 失败案例

class WhichAreIn
{

  public:
  static std::vector<std::string> inArray(std::vector<std::string> &array1, std::vector<std::string> &array2);
};

std::vector<std::string> WhichAreIn::inArray(std::vector<std::string> &array1, std::vector<std::string> &array2)
{
  std::vector<std::string> ans;
  int len1, len2;
  len1 = array1.size(); len2 = array2.size();
  std::string detectedStr;
  
  /* calculate the strings of array1 which are substrings of strings of array2 */
  for(int i=0; i<len1; i++)
  {
    detectedStr = array1[i];
    for(int j=0; j<len2; j++)
    {
      if(array2[j].find(detectedStr) != std::string::npos)
        {
          ans.push_back(detectedStr);
          break;
        }
    }
  }
  
  /* sort the ans*/
  std::string temp;
  int min_index;
  for(int i=0; i<ans.size()-1; i++)
  {
    min_index = i;
    for(int j=i+1; j<ans.size(); j++)
    {
      if(ans[j] < ans[min_index])  // if ans[i] > ans[j], then swap
      {
        min_index = j;
      }
    }
    if(min_index != i)
    {
      temp = ans[i];
      ans[i] = ans[min_index];
      ans[min_index] = temp;
    }
  }
  
  return ans;
}

失败原因:Execution Timed Out (12000 ms)

(2)成功案例

class WhichAreIn
{

  public:
  static std::vector<std::string> inArray(std::vector<std::string> &array1, std::vector<std::string> &array2);
};

std::vector<std::string> WhichAreIn::inArray(std::vector<std::string> &array1, std::vector<std::string> &array2)
{
  std::vector<std::string> ans;
  int len1, len2;
  len1 = array1.size(); len2 = array2.size();
  std::string detectedStr;
  
  /* calculate the strings of array1 which are substrings of strings of array2 */
  for(int i=0; i<len1; i++)
  {
    detectedStr = array1[i];
    for(int j=0; j<len2; j++)
    {
      if(array2[j].find(detectedStr) != std::string::npos)
      {
        if(ans.size() == 0)
        {  
          ans.push_back(detectedStr);
           break;
        }
        else
        {
          for(std::vector<std::string>::iterator it=ans.begin(); it!=ans.end();it++)
          {
            if(*it > detectedStr)
            {
              ans.insert(it, detectedStr);
              break;
            }
            if( it+1 == ans.end() )
            {
              ans.push_back(detectedStr);
              break;
            }
          }
          break;
        }
      }
    }
  }
  
  return ans;
}

2. 实现思路

(1)设置两个缓存器 ans、detectedStr
       ans:字符串数组,存放符合题目要求的字符串;
       detectedStr:代表当前分析的字符串。

(2)判断 a 中字符串是否为 b 的子串
       双重循环,逐个扫描分析 a 中的字符串。

(3)寻找 ans 中正确的位置存放字符串
       从首部开始,找到第一个比它大的位置用来存放它。

link: Best Solutions

3. 收获

(1)最开始,我是将判断(双重循环)和排序(冒泡排序)分为两个过程,这导致了超时(效率低)

(2)改进后,我将判断(双重循环)和排序(插入排序)合在一起,即当判断该字符串满足要求后就计算存放的位置,这样会形成有序的列表,能减少后面插入字符串时的比较次数,提高了效率。


永远别停下朝向更好的脚步!
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值