All Projects → xx19941215 → Light Tips

xx19941215 / Light Tips

Licence: mit
Some code tips about algorithms, php and more 🔥

Projects that are alternatives of or similar to Light Tips

Algorithmsanddatastructure
Algorithms And DataStructure Implemented In Python & CPP, Give a Star 🌟If it helps you
Stars: ✭ 400 (-43.26%)
Mutual labels:  algorithm, data-structures
Algorithms And Data Structures In Java
Algorithms and Data Structures in Java
Stars: ✭ 498 (-29.36%)
Mutual labels:  algorithm, data-structures
Algodeck
An Open-Source Collection of 200+ Algorithmic Flash Cards to Help you Preparing your Algorithm & Data Structure Interview 💯
Stars: ✭ 4,441 (+529.93%)
Mutual labels:  algorithm, data-structures
Java Algorithms Implementation
Algorithms and Data Structures implemented in Java
Stars: ✭ 3,927 (+457.02%)
Mutual labels:  algorithm, data-structures
Algorithms
Data Structure Libraries and Algorithms implementation
Stars: ✭ 624 (-11.49%)
Mutual labels:  algorithm, data-structures
Competitive coding
This repository contains some useful codes, techniques, algorithms and problem solutions helpful in Competitive Coding.
Stars: ✭ 393 (-44.26%)
Mutual labels:  algorithm, data-structures
Algorithms and data structures
180+ Algorithm & Data Structure Problems using C++
Stars: ✭ 4,667 (+561.99%)
Mutual labels:  algorithm, data-structures
Interview
📚 C/C++ 技术面试基础知识总结,包括语言、程序库、数据结构、算法、系统、网络、链接装载库等知识及面试经验、招聘、内推等信息。This repository is a summary of the basic knowledge of recruiting job seekers and beginners in the direction of C/C++ technology, including language, program library, data structure, algorithm, system, network, link loading library, interview experience, recruitment, recommendatio…
Stars: ✭ 21,608 (+2964.96%)
Mutual labels:  algorithm, data-structures
Get better at cp in 2 months
This contains the curriculum that I will follow to get better at Competitive Programming in 2 months.
Stars: ✭ 627 (-11.06%)
Mutual labels:  algorithm, data-structures
Arabiccompetitiveprogramming
The repository contains the ENGLISH description files attached to the video series in my ARABIC algorithms channel.
Stars: ✭ 675 (-4.26%)
Mutual labels:  algorithm, data-structures
Algorithms Primer
A consolidated collection of resources for you to learn and understand algorithms and data structures easily.
Stars: ✭ 381 (-45.96%)
Mutual labels:  algorithm, data-structures
Tech Refrigerator
🍰 기술 냉장고입니다. 🛒 기술 면접 , 전공 시험 , 지식 함양 등 분명 도움될 거예요! 🤟
Stars: ✭ 699 (-0.85%)
Mutual labels:  algorithm, data-structures
Proalgos Cpp
C++ implementations of well-known (and some rare) algorithms, while following good software development practices
Stars: ✭ 369 (-47.66%)
Mutual labels:  algorithm, data-structures
Leetcode Swift
Solutions to LeetCode by Swift
Stars: ✭ 4,099 (+481.42%)
Mutual labels:  algorithm, data-structures
Towel
Throw in the towel.
Stars: ✭ 333 (-52.77%)
Mutual labels:  algorithm, data-structures
Sde Interview Questions
Most comprehensive list 📋 of tech interview questions 📘 of companies scraped from Geeksforgeeks, CareerCup and Glassdoor.
Stars: ✭ 5,406 (+666.81%)
Mutual labels:  algorithm, data-structures
Algorithms
My Algorithms and Data Structures studies. https://leandrotk.github.io/series/algorithms-problem-solving
Stars: ✭ 275 (-60.99%)
Mutual labels:  algorithm, data-structures
Data Structure Php Clanguage
对于数据结构和算法类的东西,我工作有些年份了,大学也有所涉猎,积累了一些内容,不高产不母猪,打我自己脸
Stars: ✭ 299 (-57.59%)
Mutual labels:  algorithm, data-structures
Kotlin Algorithm Club
Algorithms and data structures in Kotlin.
Stars: ✭ 576 (-18.3%)
Mutual labels:  algorithm, data-structures
Data Structure And Algorithms With Es6
Data Structures and Algorithms using ES6
Stars: ✭ 594 (-15.74%)
Mutual labels:  algorithm, data-structures

Light Tips

License

记录Web开发所需要的一些基础知识,主要是PHP、MySQL、Javascript相关内容,还有一些基础的算法和数据结构。

收藏请点star,如发现有错误欢迎PR

数据结构和算法

算法

算法 最快时间复杂度 平均时间复杂度 最坏时间复杂度 空间复杂度 是否稳定
冒泡排序 Ω(n) Θ(n2) O(n2) O(1) 稳定
插入排序 Ω(n) Θ(n2) O(n2) O(1) 稳定
希尔排序 Ω(nlogn) Θ(n(log(n))2) O(n(log(n))2) O(1) 不稳定
选择排序 Ω(n2) Θ(n2) O(n2) O(1) 不稳定
堆排序 Ω(nlogn) Θ(nlogn) O(nlogn) O(1) 不稳定
归并排序 Ω(nlogn) Θ(nlogn) O(nlogn) O(n) 稳定
快速排序 Ω(nlogn) Θ(nlogn) O(n2) O(logn) 不稳定
基数排序 Ω(n+b) Θ(n+b) O(n+b) O(n+k) 稳定

O表示上界(小于等于)Ω表示下界(大于等于)Θ表示即是上界也是下界(等于)

数据结构

  1. 链表

  2. 队列

  3. 最大堆

《剑指Offer》

C语言

教程

  1. PHPer看的C语言入门教程

Go语言

教程

  1. PHPer看的Go语言入门教程

PHP

新特性

  1. PHP新特性之命名空间、性状和生成器
  2. PHP新特性之闭包、匿名函数
  3. PHP新特性之字节码缓存和内置服务器

最佳实践

  1. PHP最佳实践系列之标准
  2. PHP最佳实践之过滤、验证、转义和密码
  3. PHP最佳实践之日期、时间和时区
  4. PHP最佳实践之数据库
  5. PHP最佳实践之多字节字符串、字符编码
  6. PHP最佳实践之异常和错误
  7. PHP最佳实践之上线准备

Javascript

  1. Javascript引擎内部的三种抽象操作
  2. 彻底弄懂Javascript闭包

MYSQL

  1. MySQL索引相关问题总结
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].