Skip to content
Header image

张晓安的个人网站

where amazing happens!

  • 云数据中心
    • linux网络
    • SDN
    • 云计算
      • openstack
    • 容器
      • Docker
    • 网络协议
      • HTTP2详解
  • 基础与修养
    • 数据结构与算法
      • 数据结构与算法
      • 2020刷题记录
      • leetcode_meet_me
      • redis中的数据结构与算法
      • 极客时间—-数据结构与算法之美(王争)
        • 队列:队列在线程池等有限资源池中的应用
    • Linux
      • gnu c
      • 内核互斥技术
      • 内核活动
      • 内存管理
      • 文件系统
      • linux开发工具
    • 设计模式
    • 系统架构
      • 高并发
    • 编程语言
      • c++
      • Golang
      • Ruby
      • Python
        • python入门教程
          • 数据模型
          • 词法分析
          • 类与对象
  • 基础设施
    • gRPC
  • 源码笔记
    • Scrapy
    • Celery
  • 我的教程
    • Golang语言入门
  • CSDN
  • github

月份:2019年6月

leetcode_meet_me / 自我修养

7.翻转整数

2019年6月30日2019年7月23日 zhangxa comment on 7.翻转整数

输入:123 输出:321 输入:-123 输出:-321 def reverse_integer(i): r […]

Continue Reading ..
leetcode_meet_me / 自我修养

5.最长回文子串

2019年6月30日2019年7月23日 zhangxa comment on 5.最长回文子串

给定一个字符串s,找出其中最长的回文子串。可以假定s的最大长度为1000. 比如: 输入:”babad” 输出 […]

Continue Reading ..
leetcode_meet_me / 自我修养

4.Median of Two Sorted Arrays

2019年6月30日2019年7月23日 zhangxa comment on 4.Median of Two Sorted Arrays

有2个排序的数组ary1, ary2,大小分别为m,n. 找出2个数组中间的数字,总的运行时间复杂度要求为O( […]

Continue Reading ..
数据结构与算法 / 自我修养

求最大子数组—python实现

2019年6月29日2019年7月23日 zhangxa comment on 求最大子数组—python实现

动态规划求一个数组的最大子数组。 def max_sub_array(a): sum, max, start, […]

Continue Reading ..
leetcode_meet_me / 自我修养

3.Longest Substring Without Repeating Characters

2019年6月29日2019年7月23日 zhangxa comment on 3.Longest Substring Without Repeating Characters

查找字符串中不包含重复字符的最长字串。 例如: 输入:abcdabcdeefgh 输出:abcde int m […]

Continue Reading ..
leetcode_meet_me / 自我修养

2.Add Two Numbers

2019年6月29日2019年7月23日 zhangxa comment on 2.Add Two Numbers

有2个非空的链表,链表每个元素是非负整数。数字按照从低位到高位顺序存储。将2个链表相加,返回新的链表。 举例: […]

Continue Reading ..
leetcode_meet_me / 自我修养

1.Two sum

2019年6月29日2019年7月23日 zhangxa comment on 1.Two sum

给一个整数数组和一个整数target,返回数组中相加之和等于target的两个数。 你可以认为对于给定的输入, […]

Continue Reading ..
leetcode_meet_me / 自我修养

9.回文数字

2019年6月29日2019年7月23日 zhangxa comment on 9.回文数字

判断一个整数是否是一个回文数字。不使用额外的存储空间。 比如 123321返回true. 12324返回fal […]

Continue Reading ..
Linux / 内核互斥技术

linux互斥技术(一)

2019年6月26日2019年7月23日 zhangxa comment on linux互斥技术(一)

在内核中,可能出现多个进程(通过系统调用进入内核模式)访问同一个对象,进程和硬中断访问同一个对象,进程和软中断 […]

Continue Reading ..
数据结构与算法 / 自我修养

小根堆对数组排序C语言算法实现

2019年6月25日2019年7月23日 zhangxa comment on 小根堆对数组排序C语言算法实现

下面是我用C语言实现的小根堆排序算法实现,有注释。空间复杂度仅为o(1). 数组中0也存元素。 个人认为利用堆 […]

Continue Reading ..

文章导航

先前文章

知音

  • ThomasViz发表在《Puppet源码剖析—-Type篇(一)》
  • 더나인카지노发表在《让你的项目支持autotools》
  • 123movies发表在《让你的项目支持autotools》
  • Tapentadol 100 MG Tablet发表在《让你的项目支持autotools》
  • Royal CBD发表在《leetcode竞赛题(一)—-生成每种字符都是奇数个的字符串》

最新输出

  • 智能指针 2021年4月11日
  • Linux 虚拟网络设备详解之 “vRouter” 2020年5月20日
  • Puppet源码剖析—-Type篇(一) 2020年5月17日
  • (转)一位程序员工作10年总结的13个忠告 2020年5月17日
  • zip暴力破解工具Python实现 2020年5月4日

归档

  • 2021年4月 (1)
  • 2020年5月 (4)
  • 2020年4月 (1)
  • 2020年3月 (3)
  • 2020年2月 (2)
  • 2019年11月 (1)
  • 2019年10月 (3)
  • 2019年9月 (2)
  • 2019年8月 (10)
  • 2019年7月 (30)
  • 2019年6月 (27)
  • 2019年5月 (52)
  • 2019年4月 (5)
  • 2019年3月 (11)
  • 2019年2月 (10)
  • 2019年1月 (3)
  • 2018年9月 (1)
  • 2018年6月 (1)
  • 2012年2月 (1)
  • 2011年9月 (1)
Proudly powered by WordPress | Theme: x-blog by wpthemespace.com