找到约 642 条结果
  • JZ-036-两个链表的第一个公共结点
    输入两个链表,找出它们的第一个公共结点。(注意因为传入数据是链表,所以错误测试数据的提示是用其他方式显示的,保证传入数据是正确的)题目链接: 两个链表的第一个公共结点
    2021-12-25
  • Vscode 解决Golang无法跳转到定义
    然后,需要安装 go 的工具包。在 vscode 中,输入快捷键:command(ctrl) + shift + p,在弹出的窗口中,输入:go:install/Update Tools,回车后,选择所有插件(勾一下全选),点击确认,进行安装(设置GOPROXY)。
    2021-12-25
  • JZ-055-链表中环的入口结点
    链表中环的入口结点题目描述给一个链表,若其中包含环,请找出该链表的环的入口结点,否则,输出null。题目链接: 链表中环的入口结点代码 {代码...} 【每日寄语】 生活总有不期而遇的温暖和生生不息的希望,无论什么时候都要眼看前方,满怀希望就会所向披靡。
    2022-01-13
  • 浅析图数据库 Nebula Graph 数据导入工具——Spark Writer
    近年来随着大数据的兴起,分布式计算引擎层出不穷。Hadoop 是 Apache 开源组织的一个分布式计算开源框架,在很多大型网站上都已经得到了应用。Hadoop 的设计核心思想来源于 Google MapReduce 论文,灵感来自于函数式语言中的 map 和 reduce 方法。在函数式语言中,map 表示针对列表中每个元素应用一个方法,reduce 表示...
    2020-07-16
  • [Interview] Preparation Directions
    • [链接] • [链接] • [链接] • [链接] • [链接]• TopCoder Algorithm Tutorial: [链接] 其中几何算法的教程要仔细看• CC150: Cracking the Code Interview: [链接] 
    2016-08-12
  • JZ-023-二叉搜索树的后序遍历序列
    输入一个整数数组,判断该数组是不是某二叉搜索树的后序遍历的结果。如果是则返回true,否则返回false。假设输入的数组的任意两个数字都互不相同。题目链接: 二叉搜索树的后序遍历序列
    2021-12-12
  • IRDM python
    1 Task DefinitionAn information retrieval model is an essential component for many applications (e.g. search,question answering, recommendation etc.). Your task in this assignment is to develop aninformation retrieval model that solves the problem of passage retrieval, i.e., a model thatcan effec...
    2022-04-02
  • 使用Express开发小说API接口服务1.0(一)
    1.0版本技术栈使用express-generator、express、request、morgan、file-stream-rotator。接口用追书神器API。目前接口设计有首页,小说详情页,搜索,小说文章列表页,排行API。<!--more-->
    2019-04-04
  • NeurIPS 2019 | 基于Co-Attention和Co-Excitation的少样本目标检测
    论文提出CoAE少样本目标检测算法,该算法使用non-local block来提取目标图片与查询图片间的对应特征,使得RPN网络能够准确的获取对应类别对象的位置,另外使用类似SE block的squeeze and co-excitation模块来根据查询图片加强对应的特征纬度,最后结合margin based ranking loss达到了state-of-the-art,论文创新点满满...
    2020-03-26
  • IRDM 2020指南程序
    IRDM Course Project Part IIIRDM 2020March 15, 20211 Task DefinitionAn information retrieval model is an essential component for many applications (e.g. search,question answering, recommendation etc.). Similar to the first part of the project, your taskin this assignment is to develop an informati...
    2022-03-31
  • COMP26020 求解方法
    COMP26020 - Lab exercise for Part III (Compilers)Register Allocation using Graph ColouringBackgroundComputer programs, regardless of the programming language, often use many more variablesthan the number of variables that can fit in all CPU registers. When a program is compiled forexecution on a ...
    2023-03-05
  • Big Data (H/M) Assessed Exercise
    The goal of this exercise is to familiarize yourselves with the design, implementation and
    2025-02-26
  • IRDM 2020 任务定义
    IRDM Course Project Part IIIRDM 2020March 15, 20211 Task DefinitionAn information retrieval model is an essential component for many applications (e.g. search,question answering, recommendation etc.). Similar to the first part of the project, your taskin this assignment is to develop an informati...
    2022-05-03
  • Blackjack 游戏开发
    BlackjackIntro:Blackjack is a comparing card game between one or more players and a dealer, where each player in turncompetes against the dealer. Players do not compete against each other. It is played with one or more decksof 52 cards, and is the most widely played casino banking game in the wor...
    2022-05-05
  • JZ-033-丑数
    把只包含质因子2、3和5的数称作丑数(Ugly Number)。例如6、8都是丑数,但14不是,因为它包含质因子7。 习惯上我们把1当做是第一个丑数。求按从小到大的顺序的第N个丑数。题目链接: 丑数
    2021-12-22
  • JZ-010-矩形覆盖
    矩形覆盖题目描述我们可以用21的小矩形横着或者竖着去覆盖更大的矩形。请问用n个21的小矩形无重叠地覆盖一个2*n的大矩形,总共有多少种方法?题目链接: 矩形覆盖代码 {代码...} 【每日寄语】 闲看花开,静待花落,冷暖自知,干净如始。
    2021-10-30
    4
  • JZ-034-第一个只出现一次的字符位置
    在一个字符串(0<=字符串长度<=10000,全部由字母组成)中找到第一个只出现一次的字符,并返回它的位置, 如果没有则返回 -1(需要区分大小写).(从0开始计数)题目链接: 第一个只出现一次的字符位置
    2021-12-23