算法
文章平均质量分 63
记录自己刷算法的过程
CRUD战士
吾尝终日而思矣,不如须臾之所学也。
展开
-
LeetCode16
二叉树原创 2023-01-13 00:03:48 · 67 阅读 · 0 评论 -
LeetCodeday15
二叉树原创 2023-01-11 23:51:09 · 69 阅读 · 0 评论 -
LeetCodeday13
栈与队列原创 2023-01-09 23:16:22 · 258 阅读 · 0 评论 -
LeetCodeday10
栈与队列原创 2023-01-08 22:59:32 · 328 阅读 · 0 评论 -
LeetCodeday09
栈与队列原创 2023-01-08 17:47:42 · 577 阅读 · 0 评论 -
LeetCodeday07
字符串原创 2023-01-04 23:41:10 · 201 阅读 · 0 评论 -
LeetCodeday06
哈希表原创 2023-01-03 22:42:55 · 371 阅读 · 0 评论 -
LeetCodeday05
哈希表原创 2023-01-02 22:48:52 · 190 阅读 · 0 评论 -
LeetCodeday04
输入:head = [1,2,3,4,5], n = 2。输入:head = [1,2], n = 1。输入:head = [1], n = 1。输入:head = [1,2,3,4]输入:head = [1]输出:[2,1,4,3]输入:head = []输出:[1,2,3,5]原创 2023-01-02 00:01:19 · 139 阅读 · 0 评论 -
LeetCodeday03
addAtIndex(index,val):在链表中的第 index 个节点之前添加值为 val 的节点。deleteAtIndex(index):如果索引 index 有效,则删除链表中的第 index 个节点。get(index):获取链表中第 index 个节点的值。输入:head = [1,2,6,3,4,5,6], val = 6。输入:head = [7,7,7,7], val = 7。输入:head = [1,2,3,4,5]输出:[1,2,3,4,5]输出:[5,4,3,2,1]原创 2022-12-31 00:43:27 · 688 阅读 · 0 评论 -
LeetCodeday02
leetcode day02 记录原创 2022-12-29 22:35:27 · 432 阅读 · 0 评论 -
LeetCodeDay01
给你一个按照非递减顺序排列的整数数组 nums,和一个目标值 target。请你找出给定目标值在数组中的开始位置和结束位置。如果数组中不存在目标值 target,返回 [-1, -1]。你必须设计并实现时间复杂度为 O(log n) 的算法解决此问题。原创 2022-12-28 20:31:06 · 763 阅读 · 0 评论 -
十进制数与N进制数据的转换
十进制数与N进制数据的转换问题描述:将从键盘输入的十进制数转换为N(如二进制、八进制、十六进制)进制数据。#include<iostream>using namespace std;class List { char date; List* next; List* head;public: List(); ~List(); void push(int x); void Print();};int main() { int x; cin >> x;原创 2021-09-17 13:27:49 · 653 阅读 · 1 评论