/img/logo.jpeg

VisajiAndrevv

Welcome to my Blog

LeetCode题解_链表

链表 leetcode_160_easy <leetcode_link> 问题描述 给你两个单链表的头节点 headA和 headB ,请你找出并返回两个单链表相交的起始节点。如果两个链表不存在相交节点,返回 null 。 输入:in

论文笔记1——《Code-size-aware Scheduling of Synchronous Dataflow Graphs on Multicore Systems》

Code-size-aware Scheduling of Synchronous Dataflow Graphs on Multicore Systems MINGZE MA and RIZOS SAKELLARIOU, The University of Manchester (TECS)ACM Transactions on Embedded Computing Systems 2021 CCF-B 1、introduction Synchronous Dataflow Graphs (SDFGs)同步数据流图作为一种方便的表示流媒体应用

LeetCode题解_搜索

搜索 BFS leetcode_1091_middle <leetcode_link> 问题描述 n*n矩阵求解从左上角到右下角的最短路径长度,0为可走路径,行进方向为相邻的8个方向 [[0,1], [1,0]] 输入:grid = [[0,1],[1,0]] 输出:2 解法:B

LeetCode题解_贪心

贪心 leetcode_455_easy <leetcode_link> 问题描述 给胃口值为g[i]的孩子i分配尺寸为s[j]的饼干j,s[j] >= g[i]满足分配条件。每个孩子最多一块饼干,求分配孩子的最大

java基础

菜鸟教程 整型数据范围 byte:-128 ~ 127 (1个字节,$-2^{7}至(2^{7}-1)$) short: -32768 ~ 32767 (2个字节,$-2^{15}至(2^{1

LeetCode题解_双指针

双指针 leetcode_167_middle <leetcode_link> 问题描述 给定非递减顺序排列的整数数组 numbers 和目标数 target ,找出相加满足 target 的两个整数下标,答案唯一且元素不重复 输入:numbers = [2,7,11,15], target = 9