Skip to content

Instantly share code, notes, and snippets.

View tbfungeek's full-sized avatar
😘
Coding

Xiaohai.lin tbfungeek

😘
Coding
View GitHub Profile
@tbfungeek
tbfungeek / Python AVL Binary Tree
Created March 21, 2020 08:38 — forked from Arianxx/Python AVL Binary Tree
Python AVL Binary Tree
#! /usr/bin/python3
# -*- coding:utf-8 -*-
from collections.abc import MutableSequence
from copy import deepcopy
AUTHER = 'ArianX'
GITHUB = 'https://github.com/Arianxx'
BLOG = 'https://arianx.me'
@tbfungeek
tbfungeek / Python AVL Binary Tree
Created March 21, 2020 08:38 — forked from Arianxx/Python AVL Binary Tree
Python AVL Binary Tree
#! /usr/bin/python3
# -*- coding:utf-8 -*-
from collections.abc import MutableSequence
from copy import deepcopy
AUTHER = 'ArianX'
GITHUB = 'https://github.com/Arianxx'
BLOG = 'https://arianx.me'
@tbfungeek
tbfungeek / RealmMigrationDemo.java
Created January 21, 2017 14:03 — forked from brucetoo/RealmMigrationDemo.java
Realm数据库迁移实例
package com.brucetoo.realmdemo.realmmigration;
import android.app.Application;
import android.util.Log;
import io.realm.Realm;
import io.realm.RealmConfiguration;
import io.realm.RealmMigration;
import io.realm.RealmObject;
import io.realm.internal.ColumnType;