• 首页
  • 留言板
  • 小工具
  • 英语角

  • 前缀表达式、中缀表达式、后缀表达式

    前缀表达式 Polish notation 又称波兰表达式,运算符位于操作数之前。 转换 (3+4)*5-6对应的前缀表达式为- * + 3 4 5 6。 扫描

    昨天,阅读:7,评论:0,点赞:0,标签:数据结构 

  • 数据结构:栈-链表实现

    定义链表的节点 type Node struct { Value string Next *Node } 定义链表栈 type LinkedL

    前天,阅读:13,评论:0,点赞:0,标签:数据结构 

  • 数据结构:栈-数组实现

    定义数组栈 type ArrayStack struct { Top int Array []string } 定义入栈方法 func (s

    5天前,阅读:22,评论:0,点赞:0,标签:数据结构 

  • 数据结构:环形链表-约瑟夫环

    定义节点 type CircularNode struct { No int Next *CircularNode } 定义环形链表 typ

    5天前,阅读:21,评论:0,点赞:0,标签:数据结构 

  • 数据结构:双向链表

    定义双向节点 type DoublyNode struct { No int Name string Pre *DoublyNod

    7天前,阅读:20,评论:0,点赞:0,标签:数据结构 

  • 数据结构:单向链表

    定义单链表结构体 定义了HeadNode头节点。 type SinglyLinkedList struct { HeadNode *Node } 定义节

    8天前,阅读:21,评论:0,点赞:0,标签:数据结构 

  • 数据结构:队列-数组实现

    非循环 当head和tail索引到最后一位时,队列将无法再使用。 func main() { queue := &ArrayQueue{arr:

    9天前,阅读:29,评论:0,点赞:0,标签:数据结构 

  • 数据结构:稀疏数组

    定义 稀疏固定有3列。 第一行为记录二维数组信息:第一行第一个元素为二维数组的行,第一行第二个元素为二维数组的列,第一行第三个元素为二维数组的非0个数。 第二行

    9天前,阅读:23,评论:0,点赞:0,标签:数据结构 

  • Golang flag使用

    用途 使用命令行时指定字段赋值,类似Spring Boot以jar包方式启动时根据不同环境设置不同值。 示例 var s string var show bo

    12天前,阅读:31,评论:0,点赞:0,标签:Golang 

  • Golang类型断言和类型转换

    示例 func main() { var i interface{} = "hello" s := i.(string) fmt.Pr

    14天前,阅读:45,评论:0,点赞:0,标签:Golang 

  • Golang中的注释

    单行注释 func Add(a, b int) int { return a + b }

    14天前,阅读:33,评论:0,点赞:0,标签:Golang 

  • GoLand提示Receiver has generic name

    The name of a method's receiver should be a reflection of its identity; often a

    19天前,阅读:39,评论:0,点赞:0,标签:GoLand Golang 

  • Spring Boot使用Jackson注解

    示例 Bean @Data @JsonInclude(JsonIncl

    20天前,阅读:31,评论:0,点赞:0,标签:Spring Boot Jackson 

  • Linux tcpdump保存为pcap文件

    说明 pcap文件可适用Wireshark软件打开。 查看网卡 ifconfig 输出 eth0 Link encap:Ethernet HWadd

    21天前,阅读:59,评论:0,点赞:0,标签:tcpdump Linux Wireshark 

  • PostgreSQL distinct和distinct on区别

    数据 city空值的为null z-blog=# select city, id, ip from ip_pool; city | id |

    22天前,阅读:42,评论:0,点赞:0,标签:PostgreSQL 

  • PostgreSQL update from根据A表更新B表

    准备工作 -- 创建表1 create table t1(id integer, name text); -- 创建表2 create table t2(id

    23天前,阅读:65,评论:0,点赞:0,标签:PostgreSQL 

  • PostgreSQL查询表中的自增序列名称

    SQL 使用pg_get_serial_sequence函数,第一个参数为需要查询的表,第二个参数为自增的列。 select pg_get_serial_seq

    27天前,阅读:77,评论:0,点赞:0,标签:PostgreSQL 

  • PostgreSQL 查看时区

    查看当前时区 show timezone; 或者 show time zone; 查看内置时区 所有时区 select * from pg_timezone_n

    28天前,阅读:95,评论:0,点赞:0,标签:PostgreSQL 

  • Linux文件删除后未释放空间解决办法

    现象 文件删除后,磁盘空间未释放。 排查 使用lsof命令查看哪些文件已经被删除,而系统扔持有该文件的句柄未释放(其他进程中正在使用该文件)。 lsof | g

    29天前,阅读:68,评论:0,点赞:0,标签:Linux lsof 

  • Linux tcpdump: no suitable device found

    权限不够 使用root用户,或sudo sudo tcpdump

    2020.12.28,阅读:65,评论:0,点赞:0,标签:Linux tcpdump 

  • 上一页
  • 1
  • 2
  • 3
  • 4
  • 下一页尾页

标签

JavaOpenRestyRedisLinuxAndroidNginxMySQLMongoDBPostgreSQLPHPGitElasticsearchPython面试算法小程序

友链

安静的阿根小吴的黑科技工坊

站长统计

  • 文章数:714
  • 访客数:208224
  • 浏览量:915394

阅读排行榜

  • lanyus激活时IDEA提示your activation code could not be validated error 1653219阅读数:201582
  • Android使用adb wm命令调整手机分辨率阅读数:6740
  • IDEA破解后打不开解决方法阅读数:6691
  • Elasticsearch出现circuit_breaking_exception异常阅读数:6567
  • Windows10访问网页提示找不到服务器IP地址阅读数:4756

点赞排行榜

  • lanyus激活时IDEA提示your activation code could not be validated error 1653219点赞数:799
  • IDEA破解后打不开解决方法点赞数:25
  • Windows10访问网页提示找不到服务器IP地址点赞数:9
  • Elasticsearch health status显示为yellow解决方法点赞数:7
  • Android使用adb wm命令调整手机分辨率点赞数:7

评论排行榜

  • lanyus激活时IDEA提示your activation code could not be validated error 1653219评论数:116
  • pgAdmin4 Failed to open the system default web browser.Is one installed?.评论数:4
  • IDEA破解后打不开解决方法评论数:2
  • 微信小程序基于Parser添加长按复制、代码高亮等功能评论数:2
  • Nginx日志按天生成评论数:2

分享至微信

©2019 沪ICP备18012661号-1 阿里云

关于我们-免责声明-网站地图-GitHub