上一页 1 ··· 3 4 5 6 7
摘要: 直接上代码,图书馆要关门了。。。 1 //inserting a node at beginning 2 #include<cstdio> 3 #include<cstdlib> 4 5 typedef struct node { 6 int data; 7 struct node* next; 8 阅读全文
posted @ 2021-09-23 21:40 越菜越自信 阅读(190) 评论(0) 推荐(0)
摘要: java程序设计与数据结构3.5题 题目: 题解: 1 public class Main{ 2 public static void main(String []args) { 3 4 java.util.Scanner input = new java.util.Scanner(System.i 阅读全文
posted @ 2021-09-20 17:00 越菜越自信 阅读(37) 评论(1) 推荐(0)
上一页 1 ··· 3 4 5 6 7