- 博客(86)
- 资源 (1)
- 收藏
- 关注
原创 计算平方根(迭代法)
public class Sqrt{ public static void main(String[] args) { double c = Double.parseDouble(args[0]); double EPSILON = 1e-15; double t = c; while (Math.abs(t - c/ t) > EPSI.
2022-05-27 18:28:40
215
原创 棋盘覆盖问题
棋盘覆盖问题(C语言描述)#include <stdio.h>int board[100][100] = {0};int tile = 0;/** * tr: 棋盘左上角方格的行号 tc: 棋盘左上角方格的列号 * dr: 特殊方格所所在的行号 dc: 特殊方格所在的列号 * size: size=2的k次方 */void chessBoard(int tr, int tc, int dr, int dc, int size){ if (size ==
2021-06-03 21:04:01
116
原创 汉诺塔问题的递归算法
汉诺塔问题的递归算法void move(int a, int b){ printf("move %d --> %d \n", a, b);}void hanoi(int n, int a, int b, int c){ if (n>0) { hanoi(n-1, a, c, b); move(a, b); hanoi(n-1, c, b, a); }}
2021-06-03 21:03:41
140
原创 冒泡排序(c语言描述)
问题:实现冒泡排序void swap(int *a, int *b) { int tmp = *a; *a = *b; *b = tmp; }void bubbleSort(int a[], int n){ int i = 0; for(i=0; i<n-1; i++){ int flag = 0; int j = 0; for(j=n-1; j>i; j--) {
2021-06-03 21:03:11
89
原创 阶乘(c语言实现)
阶乘int factorial(int n) { if (n == 0) { return 1; } else { return n * factorial(n - 1); } }
2021-06-03 21:02:36
178
原创 链表的合并
链表的合并#include <stdio.h>#include <stdlib.h>typedef struct node { int data; struct node * next;}node;void reverse(node *head) { node *p = head->next; node *n; head->next = NULL; while(p != NULL) { n = p
2021-06-03 21:01:52
69
原创 找二叉树节点的双亲
找二叉树节点的双亲#include <stdio.h>typedef struct node { int data; struct node *lchild,*rchild;} bitree;bitree *q[20];int r=0;int flag=0;void Preorder(bitree *bt, char x){ if (bt!=0 && flag==0){ if (bt->data==x) {
2021-06-03 21:01:31
1901
1
原创 strcmp()函数的实现
问题:字符串比较,分别从键盘读入两个字符串stra和strb,比较这两个字符串的大小,例如输入:abcabb输入为:abc > abb.int strcmp(const char *str1, const char *str2){ int i = 0; for (i = 0; ; i++) { if (str1[i] == str2[i]) { continue; } else { return
2021-06-03 21:00:56
199
原创 结构体的嵌套
问题:从键盘输入学生的信息,并统计学生的成绩实现#include <stdio.h>#include <stdlib.h>#include <math.h>#include <string.h>//-----------------------------------------------------/** 结构体的嵌套 *///---------------------
2021-06-03 21:00:23
85
原创 memset()和bzero()的实现
问题:实现memset2() 和bzero2()void * memset2(void *vp, Byte value, int size){ Byte *bp = (Byte *)vp; int i = 0; for (i=0; i<size; i++) { bp[i] = value; } return vp;}void bzero2(void *vp, int size){ memset2(vp, 0x0, siz
2021-06-03 21:00:04
121
原创 局部变量(c语言)
在c语言中,非静态的局部变量默认是auto类型的#include <stdio.h>#include <stdlib.h>int addOne() { int number = 0; number = number + 1; return number;}int main(){ printf("第一次调用:%d\n", addOne()); printf("第二次调用:%d\n", addOne()); return
2021-06-03 20:59:47
112
原创 python socket编程实现NTP客户端
本文的代码来源于《Python Network Programming Cookbook》中的1_12示例代码,书中代码是2.7版本的,我修改后在3.8环境下测试ok。#!/usr/bin/env python# Python Network Programming Cookbook -- Chapter -1# This program is optimized for Python 3.8 It may run on any# other Python version with/without
2021-05-31 16:17:03
847
原创 什么是指针
问题:什么是指针?如何定义并访问指针?指针的本质是什么?#include <stdio.h>#include <stdlib.h>int main(){ int number = 0; /// 定义一个整型变量 int *pNumber = &number; /// 定义一个指针变量,并将其赋值为number的地址 *pNumber = 100; /// 通过指针去修改变量的值 printf("
2021-05-31 12:07:46
76
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人