- 博客(30)
- 资源 (1)
- 收藏
- 关注
原创 QQ群成员Q号提取
Step1: 登录QQ群管官网Step2: 将js代码复制,在浏览器按ctrl+d添加收藏夹javascript:(function(){var res='<textarea rows="10">';var gmb=document.getElementById("groupMember");var mblist=gmb.getElementsByClassName('list');for(var i=0;i<mblist.length;i++){var mbtrs=mblist[i
2022-03-04 23:10:55 2356 4
原创 排序二叉树的的添加,遍历
/** * 二叉树结点 */public class Node { private int data; private Node leftChild; private Node rigthChild; public Node(){ } public Node(int data) { this.data = data; ...
2019-09-27 15:21:23 265
原创 在一个二维数组中(每个一维数组的长度相同),每一行都按照从左到右递增的顺序排序,每一列都按照从上到下递增的顺序排序。
在一个二维数组中(每个一维数组的长度相同),每一行都按照从左到右递增的顺序排序,每一列都按照从上到下递增的顺序排序。输入这样的一个二维数组和一个整数,判断数组中是否含有该整数。细路:1.从上向下,向右向左2.限制列大小int[][] arr = { {1, 2, 8, 9}, {2, 4, 9, 12}, ...
2019-09-12 15:12:53 355
原创 两大数相加java
思路:1.反转两个字符串,便于从低位到高位相加和最高位的进位导致和的位数增加;2.对齐两个字符串,即短字符串的高位用‘0’补齐,便于后面的相加;3.把两个正整数相加,一位一位的加并加上进位;4.最高位有进位则补上。实现package cn.mryang.tools;public class BigData { public static String add(String n...
2019-01-17 17:11:22 3166
原创 随机投点计算圆周率
#include <stdlib.h>#include <stdio.h> #include <time.h> int main(){ srand((unsigned) time(NULL)); //随机数种子 int n; double x,y,distance; int count=0; printf...
2018-06-11 21:43:26 8319
原创 C++构造器和析构器的运行顺序
#include <iostream>#include <string>class BaseClass{ public: BaseClass(); ~BaseClass(); void doSomething();};class SubClass : public BaseClass{ public:...
2018-06-09 19:05:48 226
原创 c++传址,传引用的实例
#include <iostream>void swap(int *x,int *y);//传址int main(){ int x,y; x=1;y=2; std::cout << " x=" << x << " y=" << y << "
2018-06-05 21:55:38 908 2
原创 4. Median of Two Sorted Arrays
转 https://blog.csdn.net/yuxin6866/article/details/52425202**There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the two sorted arrays. The overall run time ...
2018-06-03 18:34:30 145
原创 Two Sum
Given an array of integers, return indices of the two numbers such that they add up to a specific target.You may assume that each input would have exactly one solution, and you may not use the same ...
2018-06-03 14:33:48 233
原创 fstream的基本用法
#include <iostream>#include <fstream>using namespace std;int main(){ ifstream in; in.open("test.txt"); if(!in){ cout << "open file failed" << endl; ...
2018-06-02 19:24:09 29470 2
原创 cin,cout基本用法
#include <iostream>using namespace std;int main(){ int sum = 0; int i; cout << "请输入一串整数和任何数目的空格:"; while(cin >> i){ sum += i; while(cin.peek() =...
2018-06-02 18:11:12 2933
转载 寻址方式在结构化数据中的应用
实现代码data segment db '1975','1976','1977','1978','1979','1980','1981','1982','1983' db '1984','1985','1986','1987','1988','1989','1990','1991','1992' db '1993','1994','1995';年份(0-53H)...
2018-05-06 12:07:36 405
原创 jsp绘图
"image/x-xbitmap" %>"java.awt.*" %>"java.io.*" %>"java.awt.image.*" %>"java.awt.geom.*" %>"com.sun.image.codec.jpeg.*" %>260,height=260; BufferedImage image = new BufferedImage(width,height,
2017-11-22 21:40:16 1203
原创 jsp环境搭建
1.下载JDK并安装2.下载JSP引擎(Tomcat 9.0)3.配置环境变量CATALINA_BASE G:\apache-tomcat-9.0.1-windows-x64\apache-tomcat-9.0.1 CATALINA_HOME G:\apache-tomcat-9.0.1-windows-x64\apache-tomcat-9.0.1CLASSPATH .;C:\java
2017-11-19 17:10:47 235
转载 基本常用正则表达式
基本正则表达式 表: 1.点号 . 可以匹配任何一个单字符,除换行符外 1个点号只能匹配字符,如 123456789abcde….等,必须为半角的 如果,想要匹配全半数字,字母,或汉字,就必须要2个点号2. 星号星号 表示之前的元素出现任意次数或0次 比如:4.*8 我们来看一下他是什么意思,星号出现在点号的后面,这代表点号有出现也行,没有出现也行; 打个比方,他可以匹配 48
2017-11-18 11:56:09 749
原创 二叉树的生成与遍历
#include <stdio.h>#include <stdlib.h>typedef char ElemType;typedef struct BiTNode{ char data;//数据域 struct BiTNode *lchild,*rchild;//左,右孩子 }BiTNode,*BiTree;//建立二叉树,前序遍历 CreateBiTree(BiTree *
2017-11-18 11:46:28 2168 1
转载 栈的存储结构和应用
//通过栈将二进制转10进进制#include <stdio.h>#include <stdlib.h>#include <math.h>#define STACK_INIT_SIZE 20#define STACKINCREAMENT 10typedef char ElemType;typedef struct { ElemType *base; ElemType *t
2017-11-18 11:28:31 371
原创 雅可比迭代法
//节省时间不设置精度//ps:注意收敛条件#include <stdio.h>#include <stdlib.h>int n = 3;//3阶行列式 double sum(int i,int a[3][3],double x0[3]){ double result = 0.0; for(int j = 0 ; j < n ; j++){ if( j !=
2017-11-18 10:55:24 12869
原创 Lu分解法的C语言实现
将系数矩阵A转变成等价两个矩阵L和U的乘积 ,其中L和U分别是单位下三角矩阵和上三角矩阵。当A的所有顺序主子式都不为0时,矩阵A可以分解为A=LU(所有顺序主子式不为0,矩阵不一定不可以进行LU分解)。其中L是下三角矩阵,U是上三角矩阵。 LU分解在本质上是高斯消元法的一种表达形式。实质上是将A通过初等行变换变成一个上三角矩阵,其变换矩阵就是一个单位下三角矩阵。这正是所谓的杜尔里特算
2017-09-12 17:55:14 14874 7
原创 单链表之头插法
单链表是一种链式存取的数据结构,用一组地址任意的存储单元存放线性表中的数据元素。链表中的数据是以结点来表示的,每个结点的构成:元素(数据元素的映象) 指针(指示后继元素存储位置),元素就是存储数据的存储单元,指针就是连接每个结点的地址数据。头插法#include <stdio.h>#include <stdlib.h>//单链表 :// head --> 信息域(节点内容)|指针域
2017-09-12 17:18:34 889
原创 [java]图片彩色转灰色
灰度化处理有多种处理方式: 1.分量法 2.最大法 3.平均法 4.加权平均法 下面采用的是对R、G、B分量进行加权平均的算法: 0.2989R+ 0.5870G + 0.1140Bimport javax.imageio.ImageIO;import java.awt.image.BufferedImage;import java.io.*;pub
2017-08-09 21:16:04 1497
原创 C语言结构体
#include <stdio.h>#include <string.h>struct Book{ char title[128]; char author[40]; float price; unsigned int date; char publisher[40];}book;int main(){ strcpy(book.title, "三
2017-08-09 11:36:04 286
原创 C语言内存分配
#include <stdio.h>#include <stdlib.h>int main(){ int *ptr = NULL; int num, i; printf("请输入待录入整数的个数:"); scanf("%d", &num); ptr = (int *) malloc(num * sizeof(int)); for(i = 0; i < n
2017-08-07 12:13:50 198
原创 C语言指针2
#include <stdio.h>//指针函数char *getWord(char);char *getWord(char c){ switch(c){ case 'A': return "Apple"; case 'B': return "Banana"; case 'C': return "Cat"; case 'D'
2017-08-05 17:37:12 256
原创 C语言指针1
数组与指针数组的名字是第一元素的地址。#include <stdio.h>int main(){ char str[128]={'a'}; printf("str 的地址是:%p\n", str); printf("str[0] 的地址是:%p\n", &str[0]);}输出:str 的地址是:000000000062FDC0str[0] 的地址是:000000000062
2017-08-01 13:57:59 296
原创 选择排序和冒泡排序
//直接选择排序public class Demo { public static void main(String[] args) { int a[] = {20,3,69,7,32}; int index; for(int i = 0; i < a.length -1; i++){ index = 0;//默认每一轮
2017-07-29 09:20:11 288
原创 [java]数组的操作
import java.util.Arrays;public class Array { public static void main(String[] args) { int arr[][] = new int[4][]; arr[0] = new int [] {1, 2, 3, 4}; arr[1] = new int [] {4, 5,
2017-07-25 18:11:18 655
原创 String类
Eclipse 的常用快捷键Ctrl+F 查找(替换) Alt + / 自动补全 Ctrl+Shift+F 自动调整格式 Ctrl+O:快速跳转 ctrl+.及ctrl+1:下一个错误及快速修改=================import java.util.Date;public class StringTest { public static void main(St
2017-07-24 23:26:11 206
翻译 java-数据类型和逻辑运算
整形的默认类型 是int public class Var { public static void main(String[] args) { long a = 123456789 * 987654321; System.out.println(a); long b = 123456789L * 987654321L; Sys
2017-07-23 21:00:57 399
全国IP段扫描器,全国IP任你扫
2011-08-21
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人