前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >LeetCode 5430. 设计浏览器历史记录

LeetCode 5430. 设计浏览器历史记录

作者头像
freesan44
发布2020-06-08 10:51:45
5830
发布2020-06-08 10:51:45
举报
文章被收录于专栏:freesan44freesan44freesan44

题目

你有一个只支持单个标签页的 浏览器 ,最开始你浏览的网页是 homepage ,你可以访问其他的网站 url ,也可以在浏览历史中后退 steps 步或前进 steps 步。

请你实现 BrowserHistory 类:

BrowserHistory(string homepage) ,用 homepage 初始化浏览器类。 void visit(string url) 从当前页跳转访问 url 对应的页面 。执行此操作会把浏览历史前进的记录全部删除。 string back(int steps) 在浏览历史中后退 steps 步。如果你只能在浏览历史中后退至多 x 步且 steps > x ,那么你只后退 x 步。请返回后退 至多 steps 步以后的 url 。 string forward(int steps) 在浏览历史中前进 steps 步。如果你只能在浏览历史中前进至多 x 步且 steps > x ,那么你只前进 x 步。请返回前进 至多 steps步以后的 url 。

示例:

输入:
["BrowserHistory","visit","visit","visit","back","back","forward","visit","forward","back","back"]
[["leetcode.com"],["google.com"],["facebook.com"],["youtube.com"],[1],[1],[1],["linkedin.com"],[2],[2],[7]]
输出:
[null,null,null,null,"facebook.com","google.com","facebook.com",null,"linkedin.com","google.com","leetcode.com"]

解释:


 BrowserHistory browserHistory = new BrowserHistory("leetcode.com");
 browserHistory.visit("google.com");       // 你原本在浏览 "leetcode.com" 。访问 "google.com"
 browserHistory.visit("facebook.com");     // 你原本在浏览 "google.com" 。访问 "facebook.com"
 browserHistory.visit("youtube.com");      // 你原本在浏览 "facebook.com" 。访问 "youtube.com"
 browserHistory.back(1);                   // 你原本在浏览 "youtube.com" ,后退到 "facebook.com" 并返回 "facebook.com"
 browserHistory.back(1);                   // 你原本在浏览 "facebook.com" ,后退到 "google.com" 并返回 "google.com"
 browserHistory.forward(1);                // 你原本在浏览 "google.com" ,前进到 "facebook.com" 并返回 "facebook.com"
 browserHistory.visit("linkedin.com");     // 你原本在浏览 "facebook.com" 。 访问 "linkedin.com"
 browserHistory.forward(2);                // 你原本在浏览 "linkedin.com" ,你无法前进任何步数。
 browserHistory.back(2);                   // 你原本在浏览 "linkedin.com" ,后退两步依次先到 "facebook.com" ,然后到 "google.com" ,并返回 "google.com"
 browserHistory.back(7);                   // 你原本在浏览 "google.com", 你只能后退一步到 "leetcode.com" ,并返回 "leetcode.com"

提示:

1 <= homepage.length <= 20 1 <= url.length <= 20 1 <= steps <= 100 homepage 和 url 都只包含 '.' 或者小写英文字母。 最多调用 5000 次 visit, back 和 forward 函数。

解题思路

使用一个index索引进行跟进

class BrowserHistory:
    historyList = []
    curIndex = -1
    def __init__(self, homepage: str):
        self.historyList.clear()
        self.curIndex = -1
        self.historyList.append(homepage)


    def visit(self, url: str) -> None:
        # print(self.historyList)
        # print(self.curIndex)
        # print(self.historyList[:None if self.curIndex+1 == 0 else self.curIndex+1])
        self.historyList = self.historyList[:None if self.curIndex+1 == 0 else self.curIndex+1]
        self.historyList.append(url)
        self.curIndex = -1


    def back(self, steps: int) -> str:
        self.curIndex += -steps
        # print("back"+str(steps))
        # print(self.curIndex)
        # print(self.historyList)
        if abs(self.curIndex) > len(self.historyList):
            self.curIndex = -len(self.historyList)
        return self.historyList[self.curIndex]


    def forward(self, steps: int) -> str:
        self.curIndex += steps
        if self.curIndex > -1:
            self.curIndex = -1#回到最新一页
        return self.historyList[self.curIndex]
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 题目
  • 解题思路
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档