上一页 1 2 3 4 5 6 7 ··· 29 下一页
摘要: SELECT a.tablespace_name, a.bytes/1073741824 total, b.bytes/1073741824 used, c.bytes/1073741824 free, (b.bytes * 100) / a.bytes "% USED ", (c.bytes * 阅读全文
posted @ 2022-04-20 16:07 牛有肉 阅读(1594) 评论(0) 推荐(0) 编辑
摘要: create or replace function count_rows(table_name in varchar2, owner in varchar2 default null) return number authid current_user IS num_rows number; st 阅读全文
posted @ 2022-04-20 16:07 牛有肉 阅读(1947) 评论(0) 推荐(0) 编辑
摘要: 以 word 做模板时,文档中的字符串在 xml 中可能被打散到多个节点。 给出上下界字符(比如 {} ),去除中间无用的 dom 节点,使其之间的内容在 xml 中是连续完整的字符串。 用双指针标出上下界后对其中的 dom 节点进行替换。 public static void format(Str 阅读全文
posted @ 2022-04-14 14:05 牛有肉 阅读(349) 评论(0) 推荐(0) 编辑
摘要: C: #include <stdlib.h> #include <stdio.h> #include <string.h> int **reArr; int currentArr[15]; int currentArrSize; void search(int point, int **graph, 阅读全文
posted @ 2022-03-28 17:30 牛有肉 阅读(67) 评论(0) 推荐(0) 编辑
摘要: C: bool search(char *s1, char *s2, char *s3, int p1, int p2, int *cache) { int len1 = strlen(s1), len2 = strlen(s2), len3 = strlen(s3); if (p1 == len1 阅读全文
posted @ 2022-03-17 13:02 牛有肉 阅读(49) 评论(0) 推荐(0) 编辑
摘要: C: void dealLeft(int *asteroids, int size, int point) { if (point >= size) return; if (asteroids[point] >= 0) return; int left = point - 1; while (lef 阅读全文
posted @ 2022-03-15 16:10 牛有肉 阅读(70) 评论(0) 推荐(0) 编辑
摘要: c: #include "stdbool.h" #include <string.h> int num = 0; bool palind(char *s, int left, int right) { if (left == right || left == right + 1) return tr 阅读全文
posted @ 2022-03-14 14:32 牛有肉 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 利用递归的回路进行比对。 C: #include "stdbool.h" #include <string.h> struct ListNode { int val; struct ListNode *next; }; struct ListNode *rightNode; bool isPal(s 阅读全文
posted @ 2022-03-09 14:04 牛有肉 阅读(17) 评论(0) 推荐(0) 编辑
摘要: C: void insert(int *B, int size, int val) { if (size == 1) B[0] = val; else { for (int i = 1; i < size; i++) { if (val <= B[i]) { B[i - 1] = val; retu 阅读全文
posted @ 2022-03-09 10:44 牛有肉 阅读(20) 评论(0) 推荐(0) 编辑
摘要: C: void moveZeroes(int* nums, int numsSize){ int left = 0,right=0; while(right<numsSize){ if(nums[right]!=0){ int temp = nums[right]; nums[right] = nu 阅读全文
posted @ 2022-03-08 16:21 牛有肉 阅读(22) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 29 下一页