New: algorithmAll contenthive-129948krhive-196917zzanhive-183959photographyhive-185836hive-180932steemhive-101145hive-150122hive-166405hive-183397hive-144064uncommonlabhive-188619krsuccesshive-184714hive-103599bitcoinhive-145157hive-193637hive-180301lifehive-193186TrendingNewHotLikersnesaty (67)in hive-183397 • 12 days agoBots and Automated Trading StrategiesAI and algorithmic trading are changing financial markets by introducing bots and automated strategies for the speedy and accurate implementation of trades. Such technologies rely on data analysis…toufiq777 (77)in hive-108451 • last monthSteemit Learning Challenge S22 Application: Intro to classes and objects in JavaHello, I'm @toufiq777 Hope everyone is well I am also fine by the grace of God. Intro to classes and objects in Java I want to share my views and knowledge with you all on the topic…kouba01 (81)in learningwithsteem • 2 months agoSteemit Learning Challenge S22 Application: Object-Oriented Programming with JavaEdited By Canva Introduction Dear Steemit Moderators and Community, I am delighted to submit my application for the Season 22 of the Steemit Learning Challenge as a solo instructor under…bumblecat (78)in holiday • 2 months agoFlix algo.oh Netflix, may your algorithym continue to know me better than I know myself.... ...NOT! You watch The Holiday that one time with Christine Carter and you get yourself on a list buddy...articlepoint786 (32)in googleupdate • 2 months agosteemCreated with Sketch.Adapting to Google’s Search Algorithm: Why Businesses Need a New SEO StrategyStay ahead with insights on Google's Search Algorithm update! Learn why quality content is key and how to adapt your SEO strategy for success. Link:fangwei (59)in programming • 3 months ago【LeetCode】541. 反转字符串 II1 题目描述 541. 反转字符串 II 给定一个字符串 s 和一个整数 k ,从字符串开头算起,每计数至 2k 个字符,就反转这 2k 字符中的前 k 个字符。如果剩余字符少于 k 个,则将剩余字符全部反转。如果剩余字符小于 2k 但大于或等于 k 个,则反转前 k 个字符,其余字符保持原样。 2 解题思路 转换为字符数组…fangwei (59)in programming • 3 months ago【Leetcode】344. 反转字符串1 题目描述 344. 反转字符串 编写一个函数,其作用是将输入的字符串反转过来。输入字符串以字符数组 s 的形式给出。不要给另外的数组分配额外的空间,你必须原地修改输入数组、使用 O(1) 的额外空间解决这一问题。 2 解题思路 双指针技术 :使用两个指针 left 和 right 分别指向数组的开头和结尾。 交换元素 :当 left…fangwei (59)in programming • 3 months ago【LeetCode】142. 环形链表 II1 题目描述 142. 环形链表 II 给定一个链表的头节点 head ,要求返回链表开始入环的第一个节点。如果没有环,则返回 null 。 2 解题思路 快慢指针法 :使用两个指针,一个快指针 fast 每次走两步,一个慢指针 slow 每次走一步。 检测环路…fangwei (59)in programming • 3 months ago【LeetCode】160. 相交链表1 题目描述 160. 相交链表 要求给定两个单链表的头节点 headA 和 headB ,任务是找出并返回两个单链表相交的起始节点。如果两个链表不存在相交节点,返回 null 。 2 解题思路 为了解决这个问题,我们可以采用以下策略: 计算两个链表的长度 :首先分别遍历两个链表以获取它们的长度。 使较长链表的头指针与较短链表的头指针对齐…lupafilotaxia (75)in hive-175254 • 3 months agoScientists develop algorithm to estimate ideal time for marriageCONTENT Advances in science never cease to amaze us, even if it generates some astonishment, a group of scientists who are experts in mathematics have developed an algorithm that establishes the…kouba01 (81)in teachingteam • 3 months agoSteemit Learning Challenge Application: Python Algorithms and Programming Course (medium Level)Edited By Canva Dear Steemit Moderators and Community, I am excited to submit my application for Season 21 of the Steemit Learning Challenge as a solo instructor under the pseudonym…shanyin (25)in tiktok • 3 months agoTikTok爆款内容创作指南短视频爆款内容结构拆解 视觉或听觉钩子 (Hook) • 目标:在视频前3秒抓住观众注意力 • 方法: • 视觉: • 夸张画面/颜色:例如满地紫色液体,制造悬念 • 突出数字:例如用醒目颜色标出“2024年”、“550美金”等 • 听觉: • 特殊音效:例如令人愉悦的产品使用声、翻页声、敲击声等 用户需求和痛点 •…ahsansharif (73)in devjr-s20w2 • 4 months agoBasic programming course: Lesson #2 - Variables and Types of DataHello Everyone I'm AhsanSharif From Pakistan Greetings you all, hope you all are well and enjoying a happy moment of life with steem. I'm also good Alhamdulillah. Made in…fangwei (59)in programming • 5 months ago【LeetCode】19. 删除链表的倒数第 N 个结点1 题目描述 19. 删除链表的倒数第 N 个结点 要求给定一个链表,任务是删除链表的倒数第 n 个结点,并且返回链表的头结点。 2 解题思路 本题可以通过双指针的方法来解决。具体来说,可以使用两个指针 slow 和 fast ,它们都初始化在哑节点 dummy 上。 fast 指针先向前移动 n + 1 步,然后两个指针同时移动,直到 fast…fangwei (59)in programming • 5 months ago【LeetCode】24. 两两交换链表中的节点1 题目描述 24. 两两交换链表中的节点 要求给定一个链表,要求两两交换其中相邻的节点,并返回交换后链表的头节点。需要注意的是,必须在不修改节点内部的值的情况下完成这个任务(即,只能进行节点交换)。 2 解题思路 为了实现两两交换,我们可以采用迭代的方法。首先定义一个哑节点(dummy node),它的 next 指向原链表的头节点 head…fangwei (59)in programming • 5 months ago【LeetCode】206. 反转链表1 题目描述 206. 反转链表 要求给定单链表的头节点 head ,任务是反转链表,并返回反转后的链表。 2 解题思路 递归反转 :使用递归方法,每次反转当前节点 cur 的 next 指针,使其指向其前一个节点 prev 。 终止条件 :当 cur 指针为空时,递归结束,此时 prev 指针即为反转后链表的头节点。…fangwei (59)in programming • 5 months ago【LeetCode】203. 移除链表元素1 题目描述 203. 移除链表元素 要求给定一个链表的头节点 head 和一个整数 val ,任务是删除链表中所有满足 Node.val == val 的节点,并返回新的头节点。 2 解题思路 使用虚拟头节点 :为了简化边界情况(例如当头节点需要被删除时),我们可以创建一个虚拟头节点 dummy…fangwei (59)in programming • 5 months ago【LeetCode】146. 螺旋遍历二维数组1 题目描述 LCR 146. 螺旋遍历二维数组 给定一个二维数组 array ,任务是返回「螺旋遍历」该数组的结果。螺旋遍历是指从左上角开始,按照 向右、向下、向左、向上的顺序 依次提取元素,然后再进入内部一层重复相同的步骤,直到提取完所有元素。 2 解题思路…fangwei (59)in programming • 5 months ago【LeetCode】54. 螺旋矩阵1 题目描述 54. 螺旋矩阵 要求给定一个 m 行 n 列的矩阵 matrix ,请按照顺时针螺旋顺序返回矩阵中的所有元素。 2 解题思路…fangwei (59)in programming • 5 months ago【LeetCode】59. 螺旋矩阵 II1 题目描述 给定一个正整数 n ,生成一个包含从 1 到 n^2 所有元素的 n x n 正方形矩阵 matrix ,并且这些元素按照顺时针方向螺旋排列。 2 解题思路 此题要求我们生成一个螺旋矩阵,我们可以考虑使用循环来逐层填充矩阵。对于每一层,我们需要依次处理四个边界:上边、右边、下边和左边。 具体来说,我们可以定义四个指针 startX , startY…