摘要: 二分查找 /*折半查找,二分查找*/ //已经排好序的数组中进行查询 #include<stdio.h> int main(){ int low, high, mid, userInput;//high low mid 记录的是数组下标 int flag = 0;//记录能否找到 int a[10] 阅读全文
posted @ 2024-11-11 15:51 GJ504b 阅读(16) 评论(0) 推荐(0)
摘要: Javascript考点 内置对象 Math Math.<方法名>(参数); Math.abs(x) 绝对 功能:返回数字 x 的绝对值。 语法:Math.abs(x) console.log(Math.abs(-5)); // 输出 5 console.log(Math.abs(10)); // 阅读全文
posted @ 2024-11-10 21:33 GJ504b 阅读(35) 评论(0) 推荐(0)
摘要: 数组常用函数 //1.find() const arry1 = [5,12,8,130,44]; const found = arry1.find(a => a > 10); // 这一行使用了find方法,它是JavaScript数组对象的一个方法,用于找出第一个满足提供的测试函数的元素。 // 阅读全文
posted @ 2024-11-10 18:41 GJ504b 阅读(42) 评论(0) 推荐(0)
摘要: 冒泡排序与选择排序 冒泡排序 condition:输入5个数字,冒泡排序,逆序输出 #include<stdio.h> int main(){ int userInput,tmp,i,j,arr[6],flag; flag = 0; for(int i=0;i<5;i++){ scanf("%d", 阅读全文
posted @ 2024-11-05 12:30 GJ504b 阅读(146) 评论(0) 推荐(0)
摘要: 获取html标签并 查 增 删 改文本 [频繁的DOM操作可能会导致页面性能下降] 查html 法一·一一对应获取选择器 只可以获得 id选择器 ||元素选择器 || 类选择器[不够灵活不推荐,了解即可] document.getElementsByTagName('li'); document.g 阅读全文
posted @ 2024-11-02 18:58 GJ504b 阅读(46) 评论(0) 推荐(0)
摘要: 用来访问对象的this 不可靠的外部变量名访问 let user = { name: "John", age: 30, sayHi() { alert(user.name); // "user" 外部变量名 } }; user.sayHi(); // TypeError: Cannot read p 阅读全文
posted @ 2024-11-01 17:03 GJ504b 阅读(27) 评论(0) 推荐(0)
摘要: 常见单位和数据类型的范围 bit byte kb mb gb tb pb #include<stdio.h> int main(){ printf("%d\n",sizeof(char)); //1 2^8 == 1024 printf("%d\n",sizeof(int)); //4 2^32 = 阅读全文
posted @ 2024-10-31 18:12 GJ504b 阅读(76) 评论(0) 推荐(0)
摘要: 好的书写习惯 最好不要省略分号,尤其对新手来说 确保 “use strict” 出现在最顶部 "use strict"; 代码以现代模式工作【ES5 规范增加了新的语言特性并且修改了一些已经存在的特性。为了保证旧的功能能够使用,大部分的修改是默认不生效的。你需要一个特殊的指令 —— "use str 阅读全文
posted @ 2024-10-31 00:25 GJ504b 阅读(34) 评论(0) 推荐(0)
摘要: 嵌套循环 7-7 求n以内最大的k个素数以及它们的和 题目 解答 #include <stdio.h> int main() { int n,k; int a[5000] = {0}; int c = 0;//计数器,后面与k比较 scanf("%d%d",&n,&k); int sum = 0; 阅读全文
posted @ 2024-10-27 22:12 GJ504b 阅读(114) 评论(0) 推荐(0)
摘要: 一维数组 7-2 求最大值及其下标 题目 题解 #include <stdio.h> int main() { int a[10],i,n,max,index;//max记录最大值,index记录最大值下标 scanf("%d",&n); for(i=0;i<n;i++){ scanf("%d",& 阅读全文
posted @ 2024-10-27 22:11 GJ504b 阅读(19) 评论(0) 推荐(0)