摘要:
动手动脑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 阅读全文
摘要:
将数据结构学了一下 回文数用栈和双向链表的方式都实现了一下 #include<iostream> using namespace std; typedef struct { char data[101]; int top; }SqStack; void InitStack(SqStack &S) { 阅读全文