02 2022 档案

摘要:<!DOCTYPE HTML> <html> <head lang="en"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>图片剪切</title> </head> <body> <div id 阅读全文
posted @ 2022-02-22 15:48 牛有肉 阅读(494) 评论(0) 推荐(0) 编辑
摘要:C: int *level(int *pre, int rowIndex, int currLevel, int *returnSize) { int currSize = *returnSize + 1; int *currList = (int *)malloc(sizeof(int) * cu 阅读全文
posted @ 2022-02-21 10:08 牛有肉 阅读(19) 评论(0) 推荐(0) 编辑
摘要:<!DOCTYPE HTML> <html> <head> <meta charset=utf-8> <title>获取相对坐标</title> <style type="text/css"> body { padding: 0px; margin: 0px; } .container { widt 阅读全文
posted @ 2022-02-16 17:43 牛有肉 阅读(761) 评论(0) 推荐(0) 编辑
摘要:C: int getMinInRow(int **matrix, int rowSize, int rowPoint) { int minPoint = 0, minValue = matrix[rowPoint][0]; for (int i = 1; i < rowSize; i++) { if 阅读全文
posted @ 2022-02-15 17:44 牛有肉 阅读(43) 评论(0) 推荐(0) 编辑