Skip to content

Instantly share code, notes, and snippets.

View LuckyKoala's full-sized avatar
🎯
Focusing

LuckyKoala

🎯
Focusing
View GitHub Profile
@LuckyKoala
LuckyKoala / dijkstra.c
Last active April 10, 2022 12:31
Practical data structure.
/*
MGraph是用邻接矩阵实现的图存储结构。
Dijkstra算法求最短路径。
*/
#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>
#include <string.h>
@LuckyKoala
LuckyKoala / movie_generator.py
Last active December 17, 2017 16:26
Query and print as markdown text.Website: http://twodam.net/movie/
#!/usr/bin/env python
#-*- coding:utf-8 -*-
'''
连接数据库,查询表信息,生成markdown文档内容
'''
from __future__ import print_function
import mysql.connector
import getpass