刷题
会灰的飞猫
这个作者很懒,什么都没留下…
展开
-
字符串指定字符反转
1 题目 牛客网上的一道题目。 给定两个字符串s1、s2,将 s1 中的包含在 s2 中的字符翻转。 示例1 输入 "abcde","bcd" 输出 "adcbe" 说明 将'b','c','d'翻转 示例2 输入 "acbde","dc" 输出 "adbce" 说明 将'c','d'翻转 备注: s1,s2只包含小写字母s1,s2只包含小写字母 1<=|s1|<=1e51<=∣s1∣<=1e5 1<=|s2|<=261<=∣s2∣<=26 链接:h原创 2022-05-03 12:59:10 · 499 阅读 · 0 评论 -
Self join-SQLZOO-10
题目 Find the routes involving two buses that can go from Craiglockhart to Lochend. Show the bus no. and company for the first bus, the name of the stop for the transfer, and the bus no. and company for the second bus. 查找从Craiglockhart到Lochend,需要换乘一次的公交路线,也就原创 2020-06-10 18:08:27 · 299 阅读 · 1 评论 -
删除公共字符与替换字符
利用c++string重载了“+”的特性,有效减少循环。 一、替换空格 题目描述 请实现一个函数,将一个字符串中的每个空格替换成“%20”。例如,当字符串为We Are Happy.则经过替换之后的字符串为We%20Are%20Happy。 class Solution { public: void replaceSpace(char *str,int length) { ...原创 2020-04-01 22:05:47 · 154 阅读 · 0 评论