Skip to content

小虾大蟹

大闸蟹的技术小窝
Menu
  • 首页
  • 编程
    • LeetCode
    • C++
    • Java
    • Python
  • 深度学习
  • NLP
  • 机器学习
  • Linux
  • 算法
  • 生活随记
  • 关于
2018年2月4日

二叉树创建、递归和非递归前序、中序、后序遍历

By admin 算法  1 Comment
二叉树的的创建和遍历是数据结构中的基本算法,在此统一归纳总结。 1.二叉树的定义 struct Node { […]
Read More
2018年2月3日

带有头节点的单链表反转

By admin 算法  1 Comment
题目描述: 给定一个带有头节点的单链表,输出逆序反转后的链表 分析:链表的转置是一个很常见、很基础的数据结构题 […]
Read More
2018年1月21日

一根绳子任取两点计算构成三角形的概率

By admin 机器学习  0 Comments
题目描述: 一根绳子长度为1,在绳子上任取两点,将绳子分成3段,计算这3段构成三角形的概率.
Read More
2018年1月6日

LeetCode 4. Median of Two Sorted Arrays

By admin C++, LeetCode, 算法  0 Comments
There are two sorted arrays nums1 and nums2 of size m a […]
Read More
2017年12月23日

LeetCode5 Longest Palindromic Substring

By admin C++, LeetCode, 算法  0 Comments
Given a string s, find the longest palindromic substrin […]
Read More
2017年12月16日

LeetCode 3. Longest Substring Without Repeating Characters

By admin C++, LeetCode, 算法  0 Comments
Given a string, find the length of the longest substrin […]
Read More
2017年12月14日

LeetCode2. Add Two Numbers

By admin C++, LeetCode, 算法  0 Comments
You are given two non-empty linked lists representing t […]
Read More
2017年12月14日

LeetCode 80. Remove Duplicates from Sorted Array II

By admin C++, LeetCode, 算法  0 Comments
Follow up for “Remove Duplicates”: What if […]
Read More
2017年12月8日

C++中指针和引用的区别

By admin C++  0 Comments
指针和引用在实际开发中用的比较多,但是要说他们俩的区别,能说出个一二来,但是却没法说出详细的区别,趁此总结一下 […]
Read More
2017年12月5日

LeetCode 27. Remove Element

By admin C++, LeetCode, 算法  0 Comments
Given an array and a value, remove all instances of tha […]
Read More
2017年12月4日

LeetCode 48. Rotate Image

By admin C++, LeetCode, 算法  0 Comments
You are given an n x n 2D matrix representing an image. […]
Read More
2017年12月3日

LeetCode 134. Gas Station

By admin C++, LeetCode, 算法  0 Comments
There are N gas stations along a circular route, where […]
Read More
2017年12月3日

蓄水池抽样算法

By admin 机器学习, 算法  0 Comments
问题描述: 给定一个数据流,要求从n个元素中等概率的采样k个样本点,n的数值未知并且数量很大。 解析: 如果n […]
Read More
2017年12月2日

python中的下划线总结

By admin Python, 编程  0 Comments
python中的下划线(_)用的比较多,在这里一并归纳总结,分别对每种使用情况做一下介绍。 1.单下划线(_) […]
Read More
2017年11月19日

常用排序算法

By admin 机器学习, 算法  1 Comment
概述 排序有内部排序和外部排序,内部排序是数据记录在内存中进行排序,而外部排序是因排序的数据很大,一次不能容纳 […]
Read More

文章导航

1 … 11 12 13 14 15 … 17

近期文章

  • LeetCode 416 Partition Equal Subset Sum
  • C++二分查找方式实现sqrt功能
  • LeetCode 77. Combinations
  • 数组中只有0,1,2三种元素,要求原地排序,不能使用额外的空间
  • 四则运算实现

近期评论

  • LeetCode 23. Merge k Sorted Lists – 小虾大蟹发表在《LeetCode 21. Merge Two Sorted Lists》
  • 未排序数组中累加和小于或等于给定值的最长子数组长度 – 小虾大蟹发表在《LeetCode中关于求和的汇总》
  • LeetCode 140. Word Break II – 小虾大蟹发表在《LeetCode 139. Word Break》
  • LeetCode 95. Unique Binary Search Trees II – 小虾大蟹发表在《LeetCode 96. Unique Binary Search Trees》
  • LeetCode 102. Binary Tree Level Order Traversal – 小虾大蟹发表在《二叉树创建、递归和非递归前序、中序、后序遍历》

文章归档

  • 2025年3月
  • 2025年2月
  • 2025年1月
  • 2024年12月
  • 2023年9月
  • 2023年8月
  • 2023年4月
  • 2020年6月
  • 2020年5月
  • 2020年4月
  • 2020年3月
  • 2020年2月
  • 2020年1月
  • 2019年12月
  • 2019年11月
  • 2019年10月
  • 2019年9月
  • 2019年8月
  • 2019年6月
  • 2019年5月
  • 2018年6月
  • 2018年5月
  • 2018年4月
  • 2018年3月
  • 2018年2月
  • 2018年1月
  • 2017年12月
  • 2017年11月
  • 2017年10月
  • 2017年9月
  • 2016年10月
  • 2016年7月
  • 2016年3月
  • 2016年2月
  • 2015年10月
  • 2015年6月
  • 2015年1月
  • 2014年12月
  • 2014年5月
  • 2014年3月
  • 2014年2月
  • 2014年1月
  • 2013年12月
  • 2013年11月
  • 2013年10月
  • 2012年7月

分类目录

  • C++
  • DefaultCategory
  • Java
  • LeetCode
  • Linux
  • NLP
  • Python
  • 关于
  • 华为题库
  • 机器学习
  • 深度学习
  • 生活随记
  • 算法
  • 编程

标签

BFS (3) BI-LSTM-CRF (3) C++ (93) CRF (3) DFS (7) Eclipse (3) Hash (2) Java (1) LDA (2) LeetCode (163) Linux (7) LR (1) LSTM (3) LUIS (1) NLP (4) Python (2) Scala (2) Spark (3) Tensorflow (1) Ubuntu (4) 二分法 (7) 二叉树 (18) 分布式 (2) 分治法 (2) 动态规划 (28) 双指针 (7) 命名实体识别 (3) 回溯法 (8) 基础函数 (6) 堆排序 (2) 排序 (7) 数学 (3) 数据结构 (1) 文本分类 (3) 机器学习 (1) 条件随机场 (2) 栈 (6) 爬虫 (1) 牛客网 (13) 算法 (109) 纠错 (5) 自然语言处理 (3) 逻辑回归 (1) 链表 (13) 随笔 (1)

功能

  • 登录
  • 条目feed
  • 评论feed
  • WordPress.org
小虾大蟹 Copyright © 2026.
京公网安备 11010502037242号 Back to Top ↑