- 浏览: 81548 次
-
文章分类
最新评论
-
wodentt:
....为什么楼主都英文的博客
用java解决百度之星移动火柴的问题 part 1 -
wensonzhou86:
思路明确,代码清晰,通俗易懂
visit 淘宝面试题:如何充分利用多核CPU,计算很大的List中所有整数的和 -
carydeepbreathing:
代码比较干净
visit 淘宝面试题:如何充分利用多核CPU,计算很大的List中所有整数的和 -
meiowei:
yangguo 写道i don't think it is a ...
用java解决百度之星移动火柴的问题 part 2 -
yangguo:
i don't think it is a good way ...
用java解决百度之星移动火柴的问题 part 2
The test cases are divided into 3 classes.
The first one is just a pinpoint test class that contains some corner cases:
The util class is like this:
The second one is to vary the broken level to see whether it's good enough:
The third one is a brutal force testing to test all cases in a certain range:
Now we should have enough confidence.
The first one is just a pinpoint test class that contains some corner cases:
java 代码
- package glassball;
- import junit.framework.TestCase;
- import java.util.List;
- /**
- * Testcases for path.
- */
- public class PathFinderTest extends TestCase
- {
- public void test1BallSingleCase()
- {
- int broken = 10;
- Building building = new Building(10, broken);
- PathFinder finder = new PathFinder(building, 1);
- List path = finder.findPuzzlePath();
- TestUtil.printPath(path);
- assertTrue(broken == TestUtil.getBrokenFloor(path));
- assertTrue(TestUtil.getPathSize(path) <= finder.getPuzzle().getMinimalTrials());
- }
- public void test2BallSingleCase1()
- {
- // 70 is the beginning of the 2nd level search
- int broken = 70;
- Building building = new Building(100, broken);
- PathFinder finder = new PathFinder(building, 2);
- List path = finder.findPuzzlePath();
- TestUtil.printPath(path);
- assertTrue(broken == TestUtil.getBrokenFloor(path));
- assertTrue(TestUtil.getPathSize(path) <= finder.getPuzzle().getMinimalTrials());
- }
- public void test2BallSingleCase2()
- {
- // 77 is the end of the 2nd level search.
- // 77 jumps out of the loop without going to return line.
- int broken = 77;
- Building building = new Building(100, broken);
- PathFinder finder = new PathFinder(building, 2);
- List path = finder.findPuzzlePath();
- TestUtil.printPath(path);
- assertTrue(broken == TestUtil.getBrokenFloor(path));
- assertTrue(TestUtil.getPathSize(path) <= finder.getPuzzle().getMinimalTrials());
- }
- public void test3BallSingleCase()
- {
- int broken = 53;
- Building building = new Building(100, broken);
- PathFinder finder = new PathFinder(building, 3);
- List path = finder.findPuzzlePath();
- TestUtil.printPath(path);
- assertTrue(broken == TestUtil.getBrokenFloor(path));
- assertTrue(TestUtil.getPathSize(path) <= finder.getPuzzle().getMinimalTrials());
- }
- public void test4BallSingleCase()
- {
- // 89 is a special number to test whether
- // totalFloors == baseFloor + totalFloors, it caused
- // 91 has been hit 3 times. Without this check, it kills 3 balls.
- int broken = 89;
- Building building = new Building(100, broken);
- PathFinder finder = new PathFinder(building, 4);
- List path = finder.findPuzzlePath();
- TestUtil.printPath(path);
- assertTrue(broken == TestUtil.getBrokenFloor(path));
- assertTrue(TestUtil.getPathSize(path) <= finder.getPuzzle().getMinimalTrials());
- }
- public void test4BallForLowerBound1()
- {
- int broken = 1;
- Building building = new Building(10, broken);
- PathFinder finder = new PathFinder(building, 4);
- List path = finder.findPuzzlePath();
- TestUtil.printPath(path);
- assertTrue(broken == TestUtil.getBrokenFloor(path));
- assertTrue(TestUtil.getPathSize(path) <= finder.getPuzzle().getMinimalTrials());
- }
- public void test4BallForLowerBound2()
- {
- int broken = 2;
- Building building = new Building(10, broken);
- PathFinder finder = new PathFinder(building, 4);
- List path = finder.findPuzzlePath();
- TestUtil.printPath(path);
- assertTrue(broken == TestUtil.getBrokenFloor(path));
- assertTrue(TestUtil.getPathSize(path) <= finder.getPuzzle().getMinimalTrials());
- }
- public void test4BallForLowerBound3()
- {
- int broken = 6;
- Building building = new Building(10, broken);
- PathFinder finder = new PathFinder(building, 4);
- List path = finder.findPuzzlePath();
- TestUtil.printPath(path);
- assertTrue(broken == TestUtil.getBrokenFloor(path));
- assertTrue(TestUtil.getPathSize(path) <= finder.getPuzzle().getMinimalTrials());
- }
- public void test2Ball4Floors()
- {
- int broken = 1;
- Building building = new Building(4, broken);
- PathFinder finder = new PathFinder(building, 2);
- List path = finder.findPuzzlePath();
- TestUtil.printPath(path);
- assertTrue(broken == TestUtil.getBrokenFloor(path));
- assertTrue(TestUtil.getPathSize(path) <= finder.getPuzzle().getMinimalTrials());
- }
- public void test3Ball17Floors()
- {
- int broken = 13;
- Building building = new Building(17, broken);
- PathFinder finder = new PathFinder(building, 3);
- List path = finder.findPuzzlePath();
- TestUtil.printPath(path);
- assertTrue(broken == TestUtil.getBrokenFloor(path));
- assertTrue(TestUtil.getPathSize(path) <= finder.getPuzzle().getMinimalTrials());
- }
- public void test4Ball100Floors()
- {
- int broken = 70;
- Building building = new Building(100, broken);
- PathFinder finder = new PathFinder(building, 4);
- List path = finder.findPuzzlePath();
- TestUtil.printPath(path);
- assertTrue(broken == TestUtil.getBrokenFloor(path));
- assertTrue(TestUtil.getPathSize(path) <= finder.getPuzzle().getMinimalTrials());
- }
- public void test5Ball100Floors()
- {
- int broken = 70;
- Building building = new Building(100, broken);
- PathFinder finder = new PathFinder(building, 5);
- List path = finder.findPuzzlePath();
- TestUtil.printPath(path);
- assertTrue(broken == TestUtil.getBrokenFloor(path));
- assertTrue(TestUtil.getPathSize(path) <= finder.getPuzzle().getMinimalTrials());
- }
- public void test6Ball100Floors()
- {
- int broken = 70;
- Building building = new Building(100, broken);
- PathFinder finder = new PathFinder(building, 6);
- List path = finder.findPuzzlePath();
- TestUtil.printPath(path);
- assertTrue(broken == TestUtil.getBrokenFloor(path));
- assertTrue(TestUtil.getPathSize(path) <= finder.getPuzzle().getMinimalTrials());
- }
- public void test3Ball9Floors()
- {
- int broken = 9;
- Building building = new Building(100, broken);
- PathFinder finder = new PathFinder(building, 3);
- List path = finder.findPuzzlePath();
- TestUtil.printPath(path);
- assertTrue(broken == TestUtil.getBrokenFloor(path));
- assertTrue(TestUtil.getPathSize(path) <= finder.getPuzzle().getMinimalTrials());
- }
- }
The util class is like this:
java 代码
- package glassball;
- import java.util.List;
- /**
- *
- */
- public class TestUtil
- {
- public static void printPath(List path)
- {
- System.out.print("path=");
- for (int i=0; i<path.size(); i++)
- {
- System.out.print(path.get(i).toString() + "-->");
- }
- System.out.println("END");
- System.out.println("number of trials=" + path.size());
- }
- public static int getPathSize(List path)
- {
- int size = 0;
- for (int i=0; i<path.size(); i++)
- {
- Trial trial = (Trial)path.get(i);
- if (!trial.isDeducted()) size++;
- }
- return size;
- }
- public static int getBrokenFloor(List path)
- {
- // several cases:
- // 1. the last one is broken,
- // 2. the last broken is before several wholes.
- // 3. all are broken, the one we are looking for is not in the list because:
- // it's the last one.
- for (int i=path.size()-1; i>=0; i--)
- {
- Trial trial = (Trial)path.get(i);
- // The last broken piece is the one we are looking for.
- if (trial.isBroken()) return trial.getFloor();
- }
- return -1;
- }
- public static boolean compareTwoIntegerArrays(List path1, List path2)
- {
- if (path1.size() != path2.size()) return false;
- for (int i=0; i<path1.size(); i++)
- {
- if (path1.get(i).equals(path2.get(i))) return false;
- }
- return true;
- }
- }
The second one is to vary the broken level to see whether it's good enough:
java 代码
- package glassball;
- import junit.framework.TestCase;
- import java.util.List;
- /**
- * This is to test the minimal trial numbers.
- */
- public class PathFinderMinimalFullTest extends TestCase
- {
- public void test3Ball100Floors()
- {
- int numOfTrials = 0;
- for (int broken=1; broken < 100; broken++)
- {
- Building building = new Building(100, broken);
- PathFinder finder = new PathFinder(building, 3);
- List path = finder.findPuzzlePath();
- if (TestUtil.getPathSize(path) > numOfTrials)
- numOfTrials = TestUtil.getPathSize(path);
- TestUtil.printPath(path);
- assertTrue(broken == TestUtil.getBrokenFloor(path));
- assertTrue(TestUtil.getPathSize(path) <= finder.getPuzzle().getMinimalTrials());
- }
- System.out.println("numOfTrials=" + numOfTrials);
- }
- public void test4Ball100Floors()
- {
- int numOfTrials = 0;
- for (int broken=1; broken < 100; broken++)
- {
- Building building = new Building(100, broken);
- PathFinder finder = new PathFinder(building, 4);
- List path = finder.findPuzzlePath();
- if (TestUtil.getPathSize(path) > numOfTrials)
- numOfTrials = TestUtil.getPathSize(path);
- TestUtil.printPath(path);
- assertTrue(broken == TestUtil.getBrokenFloor(path));
- assertTrue(TestUtil.getPathSize(path) <= finder.getPuzzle().getMinimalTrials());
- }
- System.out.println("numOfTrials=" + numOfTrials);
- }
- public void test5Ball100Floors()
- {
- int numOfTrials = 0;
- for (int broken=1; broken < 100; broken++)
- {
- Building building = new Building(100, broken);
- PathFinder finder = new PathFinder(building, 5);
- List path = finder.findPuzzlePath();
- if (TestUtil.getPathSize(path) > numOfTrials)
- numOfTrials = TestUtil.getPathSize(path);
- TestUtil.printPath(path);
- assertTrue(broken == TestUtil.getBrokenFloor(path));
- assertTrue(TestUtil.getPathSize(path) <= finder.getPuzzle().getMinimalTrials());
- }
- System.out.println("numOfTrials=" + numOfTrials);
- }
- public void test5Ball1000Floors()
- {
- int numOfTrials = 0;
- for (int broken=1; broken < 200; broken++)
- {
- Building building = new Building(200, broken);
- PathFinder finder = new PathFinder(building, 5);
- List path = finder.findPuzzlePath();
- if (TestUtil.getPathSize(path) > numOfTrials)
- numOfTrials = TestUtil.getPathSize(path);
- TestUtil.printPath(path);
- assertTrue(broken == TestUtil.getBrokenFloor(path));
- assertTrue(TestUtil.getPathSize(path) <= finder.getPuzzle().getMinimalTrials());
- }
- System.out.println("numOfTrials=" + numOfTrials);
- }
- public void test6Ball1000Floors()
- {
- int numOfTrials = 0;
- for (int broken=1; broken < 200; broken++)
- {
- Building building = new Building(200, broken);
- PathFinder finder = new PathFinder(building, 6);
- List path = finder.findPuzzlePath();
- if (TestUtil.getPathSize(path) > numOfTrials)
- numOfTrials = TestUtil.getPathSize(path);
- TestUtil.printPath(path);
- assertTrue(broken == TestUtil.getBrokenFloor(path));
- assertTrue(TestUtil.getPathSize(path) <= finder.getPuzzle().getMinimalTrials());
- }
- System.out.println("numOfTrials=" + numOfTrials);
- }
- public void test10Ball1000Floors()
- {
- int numOfTrials = 0;
- for (int broken=1; broken < 200; broken++)
- {
- Building building = new Building(200, broken);
- PathFinder finder = new PathFinder(building, 50);
- List path = finder.findPuzzlePath();
- if (TestUtil.getPathSize(path) > numOfTrials)
- numOfTrials = TestUtil.getPathSize(path);
- TestUtil.printPath(path);
- assertTrue(broken == TestUtil.getBrokenFloor(path));
- assertTrue(TestUtil.getPathSize(path) <= finder.getPuzzle().getMinimalTrials());
- }
- System.out.println("numOfTrials=" + numOfTrials);
- }
- }
The third one is a brutal force testing to test all cases in a certain range:
java 代码
- package glassball;
- import junit.framework.TestCase;
- import java.util.List;
- /**
- * The brutal force loops.
- */
- public class PathFinderFullTest extends TestCase
- {
- public void test1BallSingleCase()
- {
- for (int floors=3; floors<=300; floors++)
- {
- for (int broken=1; broken<floors; broken++)
- {
- for (int balls=1; balls<6; balls++)
- {
- Building building = new Building(floors, broken);
- PathFinder finder = new PathFinder(building, balls);
- List path = finder.findPuzzlePath();
- //TestUtil.printPath(path);
- String errorMsg = "floors=" + floors + " broken=" + broken + " balls=" + balls;
- errorMsg += " path size=" + TestUtil.getPathSize(path) + " minimal trials=" +
- finder.getPuzzle().getMinimalTrials();
- errorMsg += " result floor=" + TestUtil.getBrokenFloor(path);
- assertTrue(errorMsg, TestUtil.getPathSize(path) <= finder.getPuzzle().getMinimalTrials());
- assertTrue(errorMsg, broken == TestUtil.getBrokenFloor(path));
- }
- }
- }
- }
- }
Now we should have enough confidence.
发表评论
-
Revisit 一道应聘智力题的编程求解, Einstein puzzle
2010-03-09 00:36 1500Another brain teaser, titled 一道 ... -
Another Google question - drop glassballs from a building 5
2007-05-13 04:01 1092Here are some results are the t ... -
Another Google question - drop glassballs from a building 3
2007-05-13 03:33 1113The next step is to find the ac ... -
Another Google question - drop glassballs from a building 2
2007-05-13 03:02 1120Here is the code following the ... -
Another Google question - drop glassballs from a building 1
2007-05-12 04:43 1231Here is the question: 原题: ... -
Given n coins and a pan balance,find the only counterfeit 4
2007-02-27 05:54 1135The Utils class is composed of ... -
Given n coins and a pan balance,find the only counterfeit 3
2007-02-27 05:50 1521In the 1-ball case, if the stat ... -
Given n coins and a pan balance,find the only counterfeit 2
2007-02-27 05:29 1132Now it comes to the Scale class ... -
Given n coins and a pan balance, find the only counterfeit 1
2007-02-27 04:49 1352The problem is: There is one ... -
A Google's Interview Question - GLAT #20 series 4
2007-02-08 02:36 1121The entire class is as follows: ... -
A Google's Interview Question - GLAT #20 series 3
2007-02-08 02:36 1085The roadmap to compute all fixe ... -
A Google's Interview Question - GLAT #20 series 2
2007-02-08 02:24 1097Now, we can deduct the recursio ... -
A Google's Interview Question - GLAT #20 series 1
2007-02-08 02:22 1172Question: Consider a function ...
相关推荐
An Internet Exchange Points (IXP) (typically in a standalone building with its own switches) is a meeting point where multiple ISPs can connect and/or peer together. An ISP earns its money by ...
4. You must register this software by sending a picture postcard to the author. Use a nice stamp and mention your name, street address, EMail address and any comment you like to say. 5. As this ...
An index consists of a tree with a root from which the navigation begins, possible intermediate index levels, and bottom-level leaf pages. You use the index to find the correct leaf page. The number ...
【项目资源】: 适用于从基础到高级的各种项目,特别是在性能要求较高的场景中,比如操作系统开发、嵌入式编程和底层系统编程。如果您是初学者,可以从简单的控制台程序开始练习;如果是进阶开发者,可以尝试涉及硬件或网络的项目。 【项目质量】: 所有源码都经过严格测试,可以直接运行。 功能在确认正常工作后才上传。 【适用人群】: 适用于希望学习不同技术领域的小白或进阶学习者。 可作为毕设项目、课程设计、大作业、工程实训或初期项目立项。 【附加价值】: 项目具有较高的学习借鉴价值,也可直接拿来修改复刻。 对于有一定基础或热衷于研究的人来说,可以在这些基础代码上进行修改和扩展,实现其他功能。 【沟通交流】: 有任何使用上的问题,欢迎随时与博主沟通,博主会及时解答。 鼓励下载和使用,并欢迎大家互相学习,共同进步。 # 注意 1. 本资源仅用于开源学习和技术交流。不可商用等,一切后果由使用者承担。 2. 部分字体以及插图等来自网络,若是侵权请联系删除。
# 基于CC++的简易聊天室系统 ## 项目简介 这是一个简单易用的聊天室练手项目,主要用于提高开发者对CC++与网络编程的理解。虽然该聊天室是运行在shell上的命令行程序,但项目致力于提升其易用性和用户体验,帮助CC++初学者和使用者摆脱命令行界面简陋、交互体验差的固有印象。此程序客户端和服务端一体,服务端对环境有数据库相关要求,客户端可能需安装dl库,同时引入了jsoncpp、sqlite3等第三方库。 ## 项目的主要特性和功能 ### 特性 客户端和服务端一体设计。 尽可能简化客户端操作,提高易用性。 运用菜单形式,减少用户手动输入操作。 对用户密码进行不可逆加密,保障信息安全。 ### 功能 支持用户注册、登录,可选择保存账号密码实现免密登录。 提供全局广播模式,支持私聊、群聊功能。 允许用户添加、删除好友,设置特别关心和黑名单。 能够创建群组、加入群组,并对群员进行管理。
ITIL 术语和缩写中文
【项目资源】: 物联网项目适用于从基础到高级的各种项目,特别是在性能要求较高的场景中,比如操作系统开发、嵌入式编程和底层系统编程。如果您是初学者,可以从简单的控制台程序开始练习;如果是进阶开发者,可以尝试涉及硬件或网络的项目。 【项目质量】: 所有源码都经过严格测试,可以直接运行。 功能在确认正常工作后才上传。 【适用人群】: 适用于希望学习不同技术领域的小白或进阶学习者。 可作为毕设项目、课程设计、大作业、工程实训或初期项目立项。 【附加价值】: 项目具有较高的学习借鉴价值,也可直接拿来修改复刻。 对于有一定基础或热衷于研究的人来说,可以在这些基础代码上进行修改和扩展,实现其他功能。 【沟通交流】: 有任何使用上的问题,欢迎随时与博主沟通,博主会及时解答。 鼓励下载和使用,并欢迎大家互相学习,共同进步。 # 注意 1. 本资源仅用于开源学习和技术交流。不可商用等,一切后果由使用者承担。 2. 部分字体以及插图等来自网络,若是侵权请联系删除。
【项目资源】: 单片机项目适用于从基础到高级的各种项目,特别是在性能要求较高的场景中,比如操作系统开发、嵌入式编程和底层系统编程。如果您是初学者,可以从简单的控制台程序开始练习;如果是进阶开发者,可以尝试涉及硬件或网络的项目。 【项目质量】: 所有源码都经过严格测试,可以直接运行。 功能在确认正常工作后才上传。 【适用人群】: 适用于希望学习不同技术领域的小白或进阶学习者。 可作为毕设项目、课程设计、大作业、工程实训或初期项目立项。 【附加价值】: 项目具有较高的学习借鉴价值,也可直接拿来修改复刻。 对于有一定基础或热衷于研究的人来说,可以在这些基础代码上进行修改和扩展,实现其他功能。 【沟通交流】: 有任何使用上的问题,欢迎随时与博主沟通,博主会及时解答。 鼓励下载和使用,并欢迎大家互相学习,共同进步。 # 注意 1. 本资源仅用于开源学习和技术交流。不可商用等,一切后果由使用者承担。 2. 部分字体以及插图等来自网络,若是侵权请联系删除。
《人工智能在智能客服领域的应用方案》:在当今数字化时代,企业与客户之间的互动日益频繁,客户服务的质量和效率成为企业竞争的关键因素之一。传统的客服模式面临着诸多挑战,如人工客服成本高昂、工作时间受限、服务质量参差不齐、难以应对大量并发的客户咨询等问题。随着人工智能技术的飞速发展,智能客服应运而生,它能够为企业提供高效、便捷、低成本的客户服务解决方案,极大地提升客户体验和企业运营效率。无论是电商、金融、电信、教育等行业,都可以通过对客服数据的分析,优化自身的业务流程和服务质量,提升企业的竞争力。
【项目资源】: 物联网项目适用于从基础到高级的各种项目,特别是在性能要求较高的场景中,比如操作系统开发、嵌入式编程和底层系统编程。如果您是初学者,可以从简单的控制台程序开始练习;如果是进阶开发者,可以尝试涉及硬件或网络的项目。 【项目质量】: 所有源码都经过严格测试,可以直接运行。 功能在确认正常工作后才上传。 【适用人群】: 适用于希望学习不同技术领域的小白或进阶学习者。 可作为毕设项目、课程设计、大作业、工程实训或初期项目立项。 【附加价值】: 项目具有较高的学习借鉴价值,也可直接拿来修改复刻。 对于有一定基础或热衷于研究的人来说,可以在这些基础代码上进行修改和扩展,实现其他功能。 【沟通交流】: 有任何使用上的问题,欢迎随时与博主沟通,博主会及时解答。 鼓励下载和使用,并欢迎大家互相学习,共同进步。 # 注意 1. 本资源仅用于开源学习和技术交流。不可商用等,一切后果由使用者承担。 2. 部分字体以及插图等来自网络,若是侵权请联系删除。
内容概要:本文档是上海理工大学光电信息与计算机工程学院学生周文龙撰写的《光电融合集成电路路技术》设计报告,指导教师为隋国荣。报告分为两个部分:一是音乐梦幻灯设计,二是USB转接器仿真设计。音乐梦幻灯设计部分,以单片机为核心,通过硬件电路和软件编程实现简易电子琴,能够自动播放音乐并在电源接通时显示LED灯,详细介绍了硬件组成、原理图、元件清单及调试过程;USB转接器仿真设计部分,旨在搭建USB转接器电路,熟悉AD和嘉立创EDA等仿真平台的操作,绘制并验证电路原理图和PCB制版图,掌握焊接工艺和电路测试,为未来从事电工电子技术行业打下基础。 适合人群:电气工程、自动化、计算机等相关专业的大专院校学生,以及对单片机应用和电子电路设计感兴趣的初学者。 使用场景及目标:①学习单片机控制电子琴的原理和实现方法,包括硬件设计和软件编程;②掌握USB转接器电路的设计流程,包括原理图绘制、仿真、PCB制版图设计和电路板焊接;③提升实际动手能力和解决实际问题的能力,为未来从事相关行业打下基础。 阅读建议:本报告详细记录了设计过程中的每一个环节,包括理论知识的应用和实际操作的经验,建议读者在阅读过程中结合实际操作,逐步理解和掌握每个步骤的具体实现方法。同时,可以参考报告中提到的相关文献和工具,加深对单片机和电子电路设计的理解。
【项目资源】: 单片机项目适用于从基础到高级的各种项目,特别是在性能要求较高的场景中,比如操作系统开发、嵌入式编程和底层系统编程。如果您是初学者,可以从简单的控制台程序开始练习;如果是进阶开发者,可以尝试涉及硬件或网络的项目。 【项目质量】: 所有源码都经过严格测试,可以直接运行。 功能在确认正常工作后才上传。 【适用人群】: 适用于希望学习不同技术领域的小白或进阶学习者。 可作为毕设项目、课程设计、大作业、工程实训或初期项目立项。 【附加价值】: 项目具有较高的学习借鉴价值,也可直接拿来修改复刻。 对于有一定基础或热衷于研究的人来说,可以在这些基础代码上进行修改和扩展,实现其他功能。 【沟通交流】: 有任何使用上的问题,欢迎随时与博主沟通,博主会及时解答。 鼓励下载和使用,并欢迎大家互相学习,共同进步。 # 注意 1. 本资源仅用于开源学习和技术交流。不可商用等,一切后果由使用者承担。 2. 部分字体以及插图等来自网络,若是侵权请联系删除。
【项目资源】: 物联网项目适用于从基础到高级的各种项目,特别是在性能要求较高的场景中,比如操作系统开发、嵌入式编程和底层系统编程。如果您是初学者,可以从简单的控制台程序开始练习;如果是进阶开发者,可以尝试涉及硬件或网络的项目。 【项目质量】: 所有源码都经过严格测试,可以直接运行。 功能在确认正常工作后才上传。 【适用人群】: 适用于希望学习不同技术领域的小白或进阶学习者。 可作为毕设项目、课程设计、大作业、工程实训或初期项目立项。 【附加价值】: 项目具有较高的学习借鉴价值,也可直接拿来修改复刻。 对于有一定基础或热衷于研究的人来说,可以在这些基础代码上进行修改和扩展,实现其他功能。 【沟通交流】: 有任何使用上的问题,欢迎随时与博主沟通,博主会及时解答。 鼓励下载和使用,并欢迎大家互相学习,共同进步。 # 注意 1. 本资源仅用于开源学习和技术交流。不可商用等,一切后果由使用者承担。 2. 部分字体以及插图等来自网络,若是侵权请联系删除。
# 基于C语言的简单计算器 ## 项目简介 这是一个基于C语言的简单计算器项目,借助命令行界面为用户提供基本数学运算功能。项目运用标准C库,无需额外依赖。 ## 项目的主要特性和功能 1. 具备命令行界面,用户可在命令行输入数字和运算符,程序负责解析并执行。 2. 支持加法、减法、乘法和除法等基本数学运算。 3. 能进行错误处理,遇到不合法输入(如非数字字符或错误运算符)时,会提示用户重新输入。 4. 采用交互式设计,用户可随时退出程序或继续计算新表达式。 ## 安装使用步骤 假设用户已下载并解压了项目的源码文件,按以下步骤操作 1. 编译源代码使用C编译器(如GCC)编译项目中的 calculator.c 文件,命令为 gcc calculator.c o calculator。 2. 运行程序在终端或命令行界面中,输入 .calculator 运行程序。 3. 输入表达式按照提示输入表达式,例如 5 + 3,然后按回车键。
摘 要 面对信息时代的机遇与挑战,利用高科技手段来提高企业的管理水平无疑是一条行之有效的途径。利用计算机管理可以最大限度的发挥准确、快捷、高效等作用, 在越来越激烈的珠宝行业中,计算机管理技术对珠宝首饰公司的服务管理提供强有力的支持。因此,利用全新的计算机网络和珠宝首饰管理系统,已成为提高珠宝首饰公司的管理效率,改进服务水准的重要手段之一。本系统应用Visual Basic 6.0 中文版开发前台,用Microsoft Access 作后台服务器,采用客户机/服务器(C/S)管理思想来对珠宝首饰进销存管理。 关键词:管理水平, 管理效率,服务水准,珠宝首饰管理系统,客户机/服务器,管理思想
# 基于C语言的调试终端及格式化输出系统 ## 项目简介 本项目是一个基于C语言的调试终端及格式化输出系统,专为嵌入式系统或其他资源受限的环境设计。它提供了类似C标准库中printf函数的功能,支持格式化输出字符串、整数、浮点数等数据类型,适用于TI的C2000 MCU tms320f280049,使用CCS V8.1 IDE进行开发。 ## 项目的主要特性和功能 1. 调试终端初始化通过DebugTerminalInit函数初始化调试终端,配置GPIO引脚和SCIA模块,实现数据回显。 2. 格式化输出提供printf、vsprintf、vsnprintf和vscnprintf函数,支持格式化输出字符串、整数、浮点数等数据类型。 3. 数字输出number函数支持多种进制和标志位的数字格式化输出。 4. 指针地址输出pointer函数支持不同类型的指针地址格式化输出。
内容概要:PT5000汽轮机滑动轴承系统模拟试验台是一个类似于电厂汽轮机发电机的缩小模型,旨在帮助用户获取汽轮机转子动态行为和滑动轴承油膜现象的实际经验,并研究振动控制方法。该试验台模拟两级涡轮机(低压和中压),每级转子两侧各有8个叶片,共计16个叶片。通过电机驱动而非涡轮发电机,可以进行启停机测试,识别共振现象。试验台还支持多种实验,如不平衡/现场动平衡、轴不对中实验、摩擦实验、油膜故障试验、轴颈轴承实验以及根据油压和温度进行的转子动力学试验。试验台配备了多种传感器和控制系统,包括电涡流传感器、温度传感器、压力传感器等,用于监测和记录实验数据。 适合人群:从事汽轮机设计、制造、维护的技术人员,以及相关专业的高校师生和研究人员。 使用场景及目标:①研究汽轮机转子的动态行为和滑动轴承的油膜现象;②进行振动控制方法的研究;③模拟再现油膜涡动转和油膜震荡,研究其控制条件;④进行不平衡、不对中、摩擦等常见故障的模拟和分析;⑤通过调整油压、温度和预加载力,研究轴的行为变化。 其他说明:该试验台不仅适用于教学和科研,还可用于工业领域的培训和技术验证。试验台具有丰富的配置和可选配件,可以根据具体需求进行定制。试验台的机械和电气参数详细列出,确保用户能够全面了解设备性能。
【更新至2023年】2000-2023年中国气候政策不确定性指数数据(全国、省、市三个层面) 1.时间:2000-2023年 2.来源:使用人工审计和深度学习算法MacBERT模型,基于中国《人民日报》《光明日报》《经济日报》《环球时报》《科技日报》《中国新闻社》等6家主流报纸中的1,755,826篇文章,构建了2000年1月至2023年12月的中国全国、省份和主要城市层面的CCPU指数。研究框架包括六个部分:数据收集、清洗数据、人工审计、模型构建、指数计算与标准化以及技术验证。 3.范围:中国、省、市三个层次 4.参考文献:Ma, Y. R., Liu, Z., Ma, D., Zhai, P., Guo, K., Zhang, D., & Ji, Q. (2023). A news-based climate policy uncertainty index for China. Scientific Data, 10(1), 881. 5.时间跨度:全国层面:日度、月度、年度;省级层面:月度、年度;地级市层面:月度、年度
【项目资源】: 适用于从基础到高级的各种项目,特别是在性能要求较高的场景中,比如操作系统开发、嵌入式编程和底层系统编程。如果您是初学者,可以从简单的控制台程序开始练习;如果是进阶开发者,可以尝试涉及硬件或网络的项目。 【项目质量】: 所有源码都经过严格测试,可以直接运行。 功能在确认正常工作后才上传。 【适用人群】: 适用于希望学习不同技术领域的小白或进阶学习者。 可作为毕设项目、课程设计、大作业、工程实训或初期项目立项。 【附加价值】: 项目具有较高的学习借鉴价值,也可直接拿来修改复刻。 对于有一定基础或热衷于研究的人来说,可以在这些基础代码上进行修改和扩展,实现其他功能。 【沟通交流】: 有任何使用上的问题,欢迎随时与博主沟通,博主会及时解答。 鼓励下载和使用,并欢迎大家互相学习,共同进步。 # 注意 1. 本资源仅用于开源学习和技术交流。不可商用等,一切后果由使用者承担。 2. 部分字体以及插图等来自网络,若是侵权请联系删除。
【telesky旗舰店】ACS712 5-30A通用.zip