摘要: # -*- coding:utf-8 -*- # class RandomListNode: # def __init__(self, x): # self.label = x # self.next = None # self.random = None class Solution: # 返回 RandomListNode ... 阅读全文
posted @ 2019-08-11 22:32 lililili—— 阅读(111) 评论(0) 推荐(0)
摘要: 这道题感觉很难,还没有理解 几天后: 阅读全文
posted @ 2019-08-11 18:45 lililili—— 阅读(131) 评论(0) 推荐(0)
摘要: 英文小论文投的是SCI 3区的一个刊物,收录在spring,ei等, 投稿的时候2019/2/3影响因子2.8左右 现在2019/8/13 影响因子3.844 先科普下论文的各个状态 1. Submitted to Journal 当上传结束后,显示的状态是Submitted to Journal, 阅读全文
posted @ 2019-08-11 15:40 lililili—— 阅读(1091) 评论(0) 推荐(0)
摘要: 给定两个字符串,求解这两个字符串的最长公共子序列(Longest Common Sequence)。 子序列指的是:在字符串中取出某些字符构成新字符串,在原字符串和新字符串中的字符相对位置不变。 比如字符串1:BDCABA;字符串2:ABCBDAB 则这两个字符串的最长公共子序列长度为4,最长公共子 阅读全文
posted @ 2019-08-11 10:03 lililili—— 阅读(468) 评论(0) 推荐(0)