摘要: 动手动脑1 随机生成1000个随机数 public class Main { static int x=1; public static void f(int count) { for(int i=0;i<count;i++) { x=(16807 * x + 1) % Integer.MAX_VA 阅读全文
posted @ 2023-09-22 22:14 财神给你送元宝 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 将数据结构学了一下 回文数用栈和双向链表的方式都实现了一下 #include<iostream> using namespace std; typedef struct { char data[101]; int top; }SqStack; void InitStack(SqStack &S) { 阅读全文
posted @ 2023-09-22 09:14 财神给你送元宝 阅读(12) 评论(0) 推荐(0) 编辑