diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/9.\350\277\233\351\230\266\344\273\273\345\212\241/.gitkeep" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/9.\350\277\233\351\230\266\344\273\273\345\212\241/.gitkeep" new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/9.\350\277\233\351\230\266\344\273\273\345\212\241/1.\347\256\227\346\263\225\351\227\256\347\255\224/config.json" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/9.\350\277\233\351\230\266\344\273\273\345\212\241/1.\347\256\227\346\263\225\351\227\256\347\255\224/config.json" new file mode 100644 index 0000000000000000000000000000000000000000..c9bac5e6dd1abd4dbae49b8217c7ca68f66ca1c2 --- /dev/null +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/9.\350\277\233\351\230\266\344\273\273\345\212\241/1.\347\256\227\346\263\225\351\227\256\347\255\224/config.json" @@ -0,0 +1,8 @@ +{ + "node_id": "algorithm-4df090df30de4d24b08de34e349625f9", + "keywords": [], + "children": [], + "export": [ + "qa.json" + ] +} \ No newline at end of file diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/9.\350\277\233\351\230\266\344\273\273\345\212\241/1.\347\256\227\346\263\225\351\227\256\347\255\224/qa.json" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/9.\350\277\233\351\230\266\344\273\273\345\212\241/1.\347\256\227\346\263\225\351\227\256\347\255\224/qa.json" new file mode 100644 index 0000000000000000000000000000000000000000..bb8b429b49d440aa3e4db5c831161dc04138c0e8 --- /dev/null +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/9.\350\277\233\351\230\266\344\273\273\345\212\241/1.\347\256\227\346\263\225\351\227\256\347\255\224/qa.json" @@ -0,0 +1,8 @@ +{ + "author": "huanhuilong", + "source": "qa.md", + "depends": [], + "type": "task_qa", + "task_link": "https://ask.csdn.net/channel/1005/tag/68", + "notebook_enable": false +} \ No newline at end of file diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/9.\350\277\233\351\230\266\344\273\273\345\212\241/1.\347\256\227\346\263\225\351\227\256\347\255\224/qa.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/9.\350\277\233\351\230\266\344\273\273\345\212\241/1.\347\256\227\346\263\225\351\227\256\347\255\224/qa.md" new file mode 100644 index 0000000000000000000000000000000000000000..1fed3a379640110844360be2aeded06dddab5f2f --- /dev/null +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/9.\350\277\233\351\230\266\344\273\273\345\212\241/1.\347\256\227\346\263\225\351\227\256\347\255\224/qa.md" @@ -0,0 +1,38 @@ +# 完成5个算法问答任务 + +学习数据结构与算法的用户每天会产生很多实际使用的问题。请你回答5个用户提出的 [算法问题](https://ask.csdn.net/channel/1005/tag/68),以下对算法问答描述错误的是? + +## 答案 + +```bash +这是一个算法问题:https://ask.csdn.net/questions/7585638 +有时候,写算法的过程中出问题的不是算法的部分。例如,这个提问者原来的代码排序的部分没有问题 +``` + +## 选项 + +### A + +```bash +这是一个二分法算法的问题:https://ask.csdn.net/questions/7544963 +回答者指出了提问者的问题包括: +1.题目要求按在科技创新奖获奖名单中的先后次序输出,所以n_a不需要排序 +2.你的排序是从大到小排序,所以二分法遍历的时候,if和else if的操作需要换一下。 +3.int low=0 , high=m-1 , mid=(low + high) / 2 ;是逗号表达式,计算顺序是从右到左,会先计算mid,但是这时候low和high还没有声明,所以需要分开写。另外,每次查找,都需要重新从0-m开始,所以需要放在for循环中。 +4.while(low <=high)需要包括=的情况。 +5.printf("%u" , item);这里,%u后面建议加一个空格,这个你自己定。下面的截图中没有加。 +``` + +### B + +```bash +这是一个算法题:https://ask.csdn.net/questions/7469556 +有时候,写算法的过程中出问题的不是算法的部分。例如,这个问题里提问者的问题在于substr函数用错了。 +``` + +### C + +```bash +这是一个算法题:https://ask.csdn.net/questions/7542703 +有时候,写算法的过程中出问题的不是算法的部分。例如,这个问题里提问者的问题在于相等判断的语法错了。 +``` diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/9.\350\277\233\351\230\266\344\273\273\345\212\241/config.json" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/9.\350\277\233\351\230\266\344\273\273\345\212\241/config.json" new file mode 100644 index 0000000000000000000000000000000000000000..06d3025ae69a21d1511eb46d92242b1a8fd0e108 --- /dev/null +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/9.\350\277\233\351\230\266\344\273\273\345\212\241/config.json" @@ -0,0 +1,6 @@ +{ + "node_id": "algorithm-b9da45e25bbe427e9f8413cd0a9a4d36", + "keywords": [], + "keywords_must": [], + "keywords_forbid": [] +} \ No newline at end of file