lfasf32

@pj4746

lfasf32 暂无简介

所有 个人的 我参与的
Forks 暂停/关闭的

    lfasf32/SJTU-Courses

    上海交通大学课程资料分享

    lfasf32/awesome-hust

    HUST experiments, reports, and useful tools.

    lfasf32/Python-100-Days

    Python - 100天从新手到大师

    lfasf32/ostep-translations

    Various translations of OSTEP can be found here. Help the cause and contribute!

    lfasf32/MazeCreater

    自己写的迷宫(微信小程序版)

    lfasf32/HUST-Homeworks

    HUST Homeworks(Course design / Reports / Labs / etc. )

    lfasf32/hust-lab

    Labs for Computer Science - c, asm, data structure, csapp, hsi, matlab, digital logic, verilog, compilers, operating systems

    lfasf32/developer-roadmap

    Roadmap to becoming a web developer in 2020

    lfasf32/HUSTDoubleDegree

    华中科技大学计算机科学与技术双学位

    lfasf32/single-source-shortest-paths

    单源最短路径

    lfasf32/BeijingSubway

    # 北京地铁最短路径 ### 一、项目背景和要求 北京的地铁交通网络已经基本成型,建成的地铁线十多条,站点上百个,现需建立一个换乘指南打印系统,通过输入起点和终点站,打印出地铁换乘指南,指南内容包括起点站、换乘站、终点站。 ### 二、功能介绍 * 地铁指定线路的查看 * 换乘指南查询 ### 三、开发平台 * 开发语言 Java1.8 * 集成开发环境:IDEA ### 四、实现算法 * BFS深度优先算法 ### 五、类职责划分 ***Station 类 存放站点信息** `public class Station { private String StationName;/*记录站点名*/ private boolean Visited;/*是否被遍历过*/ private String PreStation;/*便于搜索是返回和记录*/ List<String> StationLine = new ArrayList<>();/*该站点存在的所有线路信息*/ List<Station> NearStation = new ArrayList<>();/*该站点存在的所有邻近站点信息*/ }` ***Line 类 存放线路信息** `public class Line { String LineName;/*记录当前线路名*/ ArrayList<String> Station = new ArrayList<>();/*记录该线路中所有的站点名*/ }` [*Main 类 实现程序运转的主要功能]() `public class Main { static ArrayList<Line> LineList = new ArrayList<>();//存放所有线路的列表 static ArrayList<Station> StationList = new ArrayList<>();//存放线路站点的列表 static HashMap<String, Station> stationHashMap = new HashMap<>();//存放对应站点的Hash /*对文件进行读入和存储操作*/ public static void SubwayMessage(String pathname){}; /*输出线路信息*/ public static void PrintMessage(String StartStation, String EndStation){}; }`

    lfasf32/MiGong

    迷宫-一款独立开发的微信小游戏,核心玩法已完成,养成系统待开发.....

    lfasf32/HUSTCS

    华中科技大学CS文件存留,包含相关资料,代码以及报告

    lfasf32/frontend-bootcamp

    Frontend Workshop from HTML/CSS/JS to TypeScript/React/Redux

    lfasf32/mini3d

    3D Software Renderer in 700 Lines !!

    lfasf32/CS-Notes

    :books: 技术面试必备基础知识、Leetcode、计算机操作系统、计算机网络、系统设计、Java、Python、C++

    lfasf32/awesome-wechat-weapp

    微信小程序开发资源汇总 :100:

    lfasf32/CCF-CSP-and-PAT-solution

    CCF CSP和PAT考试题解(使用C++11语法)

    lfasf32/miniob

    lfasf32/USTC-Course

    :heart:中国科学技术大学课程资源

搜索帮助