lfasf32

@pj4746

lfasf32 暂无简介

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

    lfasf32/A-star

    A-star启发式搜索算法,用于求解最短路径。

    lfasf32/SJTU-Courses

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

    lfasf32/awesome-hust

    HUST experiments, reports, and useful tools.

    lfasf32/pycitysearch

    根据城市的地理位置信息在地图上搜索两个城市的最短路径

    lfasf32/PythonShootGame

    A simple shoot game by python

    lfasf32/TSP_Ant

    蚁群算法求城市最短路径

    lfasf32/Python-100-Days

    Python - 100天从新手到大师

    lfasf32/Terminal

    The new Windows Terminal, and the original Windows console host -- all in the same place!

    lfasf32/sudoku

    Use dpll algorithm to solve Satisfiability Problem and put it on sudoku solving

    lfasf32/ostep-translations

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

    lfasf32/MazeCreater

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

    lfasf32/maze_miniprogram

    微信小程序/canvas/迷宫

    lfasf32/Virgilio

    Your new Mentor for Data Science E-Learning.

    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

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

搜索帮助